From a62ce43c8ebc9ea58ceb9180d03c444cc44fdc12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Fri, 8 Sep 2023 12:14:11 +0200 Subject: [PATCH 01/14] chore: Bump HUGR dependency (#94) Multiple small changes to the hugr API. Note that this doesn't update to the current HEAD, #91 will adapt to the changes from https://github.com/CQCL-DEV/hugr/pull/498 and simplify the circuits. The goal of this separate PR is to reduce the diff noise there. --- Cargo.toml | 2 +- src/circuit/command.rs | 3 +-- src/extension.rs | 10 ++++++---- src/json/encoder.rs | 6 ++++-- src/ops.rs | 10 +++++----- src/portmatching/matcher.rs | 22 ++++++++-------------- src/portmatching/pyo3.rs | 2 +- src/rewrite.rs | 9 +++------ src/rewrite/ecc_rewriter.rs | 2 +- 9 files changed, 30 insertions(+), 36 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0ffe4a7c..dec2ddee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,7 +69,7 @@ members = ["pyrs", "compile-matcher"] [workspace.dependencies] -quantinuum-hugr = { git = "https://github.com/CQCL-DEV/hugr", rev = "abfaba6" } +quantinuum-hugr = { git = "https://github.com/CQCL-DEV/hugr", rev = "5a97a635" } portgraph = { version = "0.8", features = ["serde"] } pyo3 = { version = "0.19" } itertools = { version = "0.11.0" } diff --git a/src/circuit/command.rs b/src/circuit/command.rs index 14fa6ad2..747a47cb 100644 --- a/src/circuit/command.rs +++ b/src/circuit/command.rs @@ -8,7 +8,6 @@ use std::iter::FusedIterator; use hugr::hugr::views::HierarchyView; use hugr::ops::{OpTag, OpTrait}; use petgraph::visit::{GraphBase, IntoNeighborsDirected, IntoNodeIdentifiers}; -use portgraph::PortOffset; use super::Circuit; @@ -107,7 +106,7 @@ where optype .static_input() // TODO query optype for this port once it is available in hugr. - .map(|_| PortOffset::new_incoming(sig.input.len()).into()), + .map(|_| Port::new_incoming(sig.input.len())), ) .filter_map(|port| { let (from, from_port) = self.circ.linked_ports(node, port).next()?; diff --git a/src/extension.rs b/src/extension.rs index ad54731f..634bbd7b 100644 --- a/src/extension.rs +++ b/src/extension.rs @@ -81,7 +81,9 @@ pub(crate) fn wrap_json_op(op: &JsonOp) -> ExternalOp { // .into() let sig = op.signature(); let op = serde_yaml::to_value(op).unwrap(); - let payload = TypeArg::Opaque(CustomTypeArg::new(TKET1_OP_PAYLOAD.clone(), op).unwrap()); + let payload = TypeArg::Opaque { + arg: CustomTypeArg::new(TKET1_OP_PAYLOAD.clone(), op).unwrap(), + }; OpaqueOp::new( TKET1_EXTENSION_ID, JSON_OP_NAME, @@ -100,17 +102,17 @@ pub(crate) fn try_unwrap_json_op(ext: &ExternalOp) -> Option { if ext.name() != format!("{TKET1_EXTENSION_ID}.{JSON_OP_NAME}") { return None; } - let Some(TypeArg::Opaque(op)) = ext.args().get(0) else { + let Some(TypeArg::Opaque { arg }) = ext.args().get(0) else { // TODO: Throw an error? We should never get here if the name matches. return None; }; - let op = serde_yaml::from_value(op.value.clone()).ok()?; + let op = serde_yaml::from_value(arg.value.clone()).ok()?; Some(op) } /// Compute the signature of a json-encoded TKET1 operation. fn json_op_signature(args: &[TypeArg]) -> Result { - let [TypeArg::Opaque(arg)] = args else { + let [TypeArg::Opaque { arg }] = args else { // This should have already been checked. panic!("Wrong number of arguments"); }; diff --git a/src/json/encoder.rs b/src/json/encoder.rs index 3711e401..ad81b653 100644 --- a/src/json/encoder.rs +++ b/src/json/encoder.rs @@ -163,8 +163,10 @@ impl JsonEncoder { OpType::Const(const_op) => { // New constant, register it if it can be interpreted as a parameter. match const_op.value() { - Value::Prim(PrimValue::Extension((v,))) => { - if let Some(f) = v.downcast_ref::() { + Value::Prim { + val: PrimValue::Extension { c: (val,) }, + } => { + if let Some(f) = val.downcast_ref::() { f.to_string() } else { return false; diff --git a/src/ops.rs b/src/ops.rs index 47c5ee2e..8783e698 100644 --- a/src/ops.rs +++ b/src/ops.rs @@ -184,9 +184,9 @@ pub fn symbolic_constant_op(s: &str) -> OpType { let l: LeafOp = EXTENSION .instantiate_extension_op( &SYM_OP_ID, - vec![TypeArg::Opaque( - CustomTypeArg::new(SYM_EXPR_T, value).unwrap(), - )], + vec![TypeArg::Opaque { + arg: CustomTypeArg::new(SYM_EXPR_T, value).unwrap(), + }], ) .unwrap() .into(); @@ -202,11 +202,11 @@ pub(crate) fn match_symb_const_op(op: &OpType) -> Option<&str> { { // TODO also check extension name - let Some(TypeArg::Opaque(s)) = e.args().get(0) else { + let Some(TypeArg::Opaque { arg }) = e.args().get(0) else { panic!("should be an opaque type arg.") }; - let serde_yaml::Value::String(s) = &s.value else { + let serde_yaml::Value::String(s) = &arg.value else { panic!("unexpected yaml value.") }; diff --git a/src/portmatching/matcher.rs b/src/portmatching/matcher.rs index a666451b..4dcd8915 100644 --- a/src/portmatching/matcher.rs +++ b/src/portmatching/matcher.rs @@ -8,17 +8,8 @@ use std::{ }; use super::{CircuitPattern, PEdge, PNode}; -use hugr::{ - hugr::views::{ - sibling::{ - ConvexChecker, InvalidReplacement, - InvalidSubgraph::{self}, - }, - SiblingSubgraph, - }, - ops::OpType, - Hugr, Node, Port, -}; +use hugr::hugr::views::sibling_subgraph::{ConvexChecker, InvalidReplacement, InvalidSubgraph}; +use hugr::{hugr::views::SiblingSubgraph, ops::OpType, Hugr, Node, Port}; use itertools::Itertools; use portmatching::{ automaton::{LineBuilder, ScopeAutomaton}, @@ -82,7 +73,7 @@ pub struct PatternMatch<'a, C> { pub(super) root: Node, } -impl<'a, C: Circuit<'a>> PatternMatch<'a, C> { +impl<'a, C: Circuit<'a> + Clone> PatternMatch<'a, C> { /// The matcher's pattern ID of the match. pub fn pattern_id(&self) -> PatternID { self.pattern @@ -246,7 +237,10 @@ impl PatternMatcher { } /// Find all convex pattern matches in a circuit. - pub fn find_matches<'a, C: Circuit<'a>>(&self, circuit: &'a C) -> Vec> { + pub fn find_matches<'a, C: Circuit<'a> + Clone>( + &self, + circuit: &'a C, + ) -> Vec> { let mut checker = ConvexChecker::new(circuit); circuit .commands() @@ -255,7 +249,7 @@ impl PatternMatcher { } /// Find all convex pattern matches in a circuit rooted at a given node. - fn find_rooted_matches<'a, C: Circuit<'a>>( + fn find_rooted_matches<'a, C: Circuit<'a> + Clone>( &self, circ: &'a C, root: Node, diff --git a/src/portmatching/pyo3.rs b/src/portmatching/pyo3.rs index ce146856..41faed6c 100644 --- a/src/portmatching/pyo3.rs +++ b/src/portmatching/pyo3.rs @@ -121,7 +121,7 @@ impl PyPatternMatch { /// /// Requires references to the circuit and pattern to resolve indices /// into these objects. - pub fn try_from_rust<'circ, C: Circuit<'circ>>( + pub fn try_from_rust<'circ, C: Circuit<'circ> + Clone>( m: PatternMatch<'circ, C>, circ: &C, matcher: &PatternMatcher, diff --git a/src/rewrite.rs b/src/rewrite.rs index 5947a339..d4919878 100644 --- a/src/rewrite.rs +++ b/src/rewrite.rs @@ -7,12 +7,9 @@ pub use ecc_rewriter::ECCRewriter; use delegate::delegate; use derive_more::{From, Into}; +use hugr::hugr::views::sibling_subgraph::InvalidReplacement; use hugr::{ - hugr::{ - hugrmut::HugrMut, - views::{sibling::InvalidReplacement, SiblingSubgraph}, - Rewrite, SimpleReplacementError, - }, + hugr::{hugrmut::HugrMut, views::SiblingSubgraph, Rewrite, SimpleReplacementError}, Hugr, HugrView, SimpleReplacement, }; @@ -55,5 +52,5 @@ impl CircuitRewrite { /// Generate rewrite rules for circuits. pub trait Rewriter { /// Get the rewrite rules for a circuit. - fn get_rewrites<'a, C: Circuit<'a>>(&'a self, circ: &'a C) -> Vec; + fn get_rewrites<'a, C: Circuit<'a> + Clone>(&'a self, circ: &'a C) -> Vec; } diff --git a/src/rewrite/ecc_rewriter.rs b/src/rewrite/ecc_rewriter.rs index 1bad0157..32d181ed 100644 --- a/src/rewrite/ecc_rewriter.rs +++ b/src/rewrite/ecc_rewriter.rs @@ -96,7 +96,7 @@ impl ECCRewriter { } impl Rewriter for ECCRewriter { - fn get_rewrites<'a, C: Circuit<'a>>(&'a self, circ: &'a C) -> Vec { + fn get_rewrites<'a, C: Circuit<'a> + Clone>(&'a self, circ: &'a C) -> Vec { let matches = self.matcher.find_matches(circ); matches .into_iter() From 742418532e271248b0d7b46bf488248f9502b8c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 09:36:50 +0100 Subject: [PATCH 02/14] chore(deps): update portgraph requirement from 0.8 to 0.9 (#97) Updates the requirements on [portgraph](https://github.com/CQCL/portgraph) to permit the latest version.
Changelog

Sourced from portgraph's changelog.

v0.9.0 (2023-09-05)

Features

  • Require Clone instead of Copy in ConvexChecker, add Copy to filters (#104)
  • Allow non-references in the portgraph wrappers (#105)

v0.8.0 (2023-08-08)

Added

  • view::FilteredGraph for filtering both nodes and links of a graph (#100[])
  • view::SubGraph for views into non-hierarchical subgraphs (#100[])

Changed

  • view::NodeFiltered is now a specialized version of view::FilteredGraph. Its constructor has been renamed to NodeFiltered::new_node_filtered. (#100[])

    #100: CQCL/portgraph#100

v0.7.2 (2023-07-31)

Added

  • algorithms::ConvexChecker to check convexity property of subgraphs of LinkViews (#97[])

Changed

v0.7.1 (2023-07-13)

Fixed

v0.7.0 (2023-06-28)

Added

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dec2ddee..9b0f6292 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -70,6 +70,6 @@ members = ["pyrs", "compile-matcher"] [workspace.dependencies] quantinuum-hugr = { git = "https://github.com/CQCL-DEV/hugr", rev = "5a97a635" } -portgraph = { version = "0.8", features = ["serde"] } +portgraph = { version = "0.9", features = ["serde"] } pyo3 = { version = "0.19" } itertools = { version = "0.11.0" } From 02157484bcb40d90c934f55c795d7627f3ee8768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Tue, 12 Sep 2023 12:40:06 +0200 Subject: [PATCH 03/14] feat!: Let Hugr implement Circuit (#91) - Replaces the `HierarchyView` bound in `Circuit` with `HugrView` (from https://github.com/CQCL-DEV/hugr/pull/498), which is implemented by `Hugr`. - This simplifies the tests, where we don't need to wrap `Hugr`s anymore. - We still need a lifetime for the Commands iterator, so `Circuit::Comands` now has a generic lifetime. - Uses the new `PetgraphWrapper` when needed instead of requiring Petgraph traits on everything. - This lets us drop the lifetime from `Circuit<'a>`. Closes #84. ~Blocked by https://github.com/CQCL-DEV/hugr/pull/498.~ --- Cargo.toml | 2 +- benches/benchmarks/hash.rs | 4 +-- compile-matcher/src/main.rs | 2 +- src/circuit.rs | 64 +++++++++++++++---------------------- src/circuit/command.rs | 17 +++------- src/circuit/hash.rs | 10 +++--- src/json.rs | 4 +-- src/json/encoder.rs | 2 +- src/ops.rs | 8 ++--- src/portmatching/matcher.rs | 62 +++++++++++++---------------------- src/portmatching/pattern.rs | 20 +++--------- src/portmatching/pyo3.rs | 4 +-- src/rewrite.rs | 2 +- src/rewrite/ecc_rewriter.rs | 2 +- 14 files changed, 76 insertions(+), 127 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9b0f6292..e9d0ce53 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,7 +69,7 @@ members = ["pyrs", "compile-matcher"] [workspace.dependencies] -quantinuum-hugr = { git = "https://github.com/CQCL-DEV/hugr", rev = "5a97a635" } +quantinuum-hugr = { git = "https://github.com/CQCL-DEV/hugr", rev = "e23323d" } portgraph = { version = "0.9", features = ["serde"] } pyo3 = { version = "0.19" } itertools = { version = "0.11.0" } diff --git a/benches/benchmarks/hash.rs b/benches/benchmarks/hash.rs index ad62304c..a9f28c87 100644 --- a/benches/benchmarks/hash.rs +++ b/benches/benchmarks/hash.rs @@ -1,7 +1,7 @@ use criterion::{black_box, criterion_group, AxisScale, BenchmarkId, Criterion, PlotConfiguration}; -use hugr::hugr::views::SiblingGraph; +use hugr::hugr::views::{HierarchyView, SiblingGraph}; use hugr::HugrView; -use tket2::circuit::{CircuitHash, HierarchyView}; +use tket2::circuit::CircuitHash; use super::generators::make_cnot_layers; diff --git a/compile-matcher/src/main.rs b/compile-matcher/src/main.rs index 5c0f59dc..2078a94f 100644 --- a/compile-matcher/src/main.rs +++ b/compile-matcher/src/main.rs @@ -2,7 +2,7 @@ use std::fs; use std::path::Path; use clap::Parser; -use hugr::hugr::views::{HierarchyView, SiblingGraph}; +use hugr::hugr::views::SiblingGraph; use hugr::ops::handle::DfgID; use hugr::HugrView; use itertools::Itertools; diff --git a/src/circuit.rs b/src/circuit.rs index a36fd2da..e7ffc4fc 100644 --- a/src/circuit.rs +++ b/src/circuit.rs @@ -18,12 +18,10 @@ use hugr::hugr::{CircuitUnit, NodeType}; use hugr::ops::OpTrait; use hugr::HugrView; -pub use hugr::hugr::views::HierarchyView; pub use hugr::ops::OpType; use hugr::types::TypeBound; pub use hugr::types::{EdgeKind, Signature, Type, TypeRow}; pub use hugr::{Node, Port, Wire}; -use petgraph::visit::{GraphBase, IntoNeighborsDirected, IntoNodeIdentifiers}; /// An object behaving like a quantum circuit. // @@ -32,9 +30,11 @@ use petgraph::visit::{GraphBase, IntoNeighborsDirected, IntoNodeIdentifiers}; // - Vertical slice iterator // - Gate count map // - Depth -pub trait Circuit<'circ>: HugrView { +pub trait Circuit: HugrView { /// An iterator over the commands in the circuit. - type Commands: Iterator; + type Commands<'a>: Iterator + where + Self: 'a; /// An iterator over the commands applied to an unit. type UnitCommands: Iterator; @@ -67,10 +67,10 @@ pub trait Circuit<'circ>: HugrView { /// Returns all the commands in the circuit, in some topological order. /// /// Ignores the Input and Output nodes. - fn commands(&'circ self) -> Self::Commands; + fn commands(&self) -> Self::Commands<'_>; /// Returns all the commands applied to the given unit, in order. - fn unit_commands(&'circ self) -> Self::UnitCommands; + fn unit_commands(&self) -> Self::UnitCommands; /// Returns the [`NodeType`] of a command. fn command_nodetype(&self, command: &Command) -> &NodeType { @@ -86,12 +86,11 @@ pub trait Circuit<'circ>: HugrView { fn num_gates(&self) -> usize; } -impl<'circ, T> Circuit<'circ> for T +impl Circuit for T where - T: 'circ + HierarchyView<'circ>, - for<'a> &'a T: GraphBase + IntoNeighborsDirected + IntoNodeIdentifiers, + T: HugrView, { - type Commands = CommandIterator<'circ, T>; + type Commands<'a> = CommandIterator<'a, T> where Self: 'a; type UnitCommands = std::iter::Empty; #[inline] @@ -129,12 +128,12 @@ where } } - fn commands(&'circ self) -> Self::Commands { + fn commands(&self) -> Self::Commands<'_> { // Traverse the circuit in topological order. CommandIterator::new(self) } - fn unit_commands(&'circ self) -> Self::UnitCommands { + fn unit_commands(&self) -> Self::UnitCommands { // TODO Can we associate linear i/o with the corresponding unit without // doing the full toposort? unimplemented!() @@ -158,35 +157,24 @@ where #[cfg(test)] mod tests { - use std::sync::OnceLock; - - use hugr::{ - hugr::views::{DescendantsGraph, HierarchyView}, - ops::handle::DfgID, - Hugr, HugrView, - }; + use hugr::Hugr; use crate::{circuit::Circuit, json::load_tk1_json_str}; - static CIRC: OnceLock = OnceLock::new(); - - fn test_circuit() -> DescendantsGraph<'static, DfgID> { - let hugr = CIRC.get_or_init(|| { - load_tk1_json_str( - r#"{ - "phase": "0", - "bits": [], - "qubits": [["q", [0]], ["q", [1]]], - "commands": [ - {"args": [["q", [0]]], "op": {"type": "H"}}, - {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}} - ], - "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]]] - }"#, - ) - .unwrap() - }); - DescendantsGraph::new(hugr, hugr.root()) + fn test_circuit() -> Hugr { + load_tk1_json_str( + r#"{ + "phase": "0", + "bits": [], + "qubits": [["q", [0]], ["q", [1]]], + "commands": [ + {"args": [["q", [0]]], "op": {"type": "H"}}, + {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}} + ], + "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]]] + }"#, + ) + .unwrap() } #[test] diff --git a/src/circuit/command.rs b/src/circuit/command.rs index 747a47cb..570c8bb2 100644 --- a/src/circuit/command.rs +++ b/src/circuit/command.rs @@ -5,9 +5,7 @@ use std::collections::HashMap; use std::iter::FusedIterator; -use hugr::hugr::views::HierarchyView; use hugr::ops::{OpTag, OpTrait}; -use petgraph::visit::{GraphBase, IntoNeighborsDirected, IntoNodeIdentifiers}; use super::Circuit; @@ -59,8 +57,7 @@ pub struct CommandIterator<'circ, Circ> { impl<'circ, Circ> CommandIterator<'circ, Circ> where - Circ: HierarchyView<'circ>, - for<'a> &'a Circ: GraphBase + IntoNeighborsDirected + IntoNodeIdentifiers, + Circ: Circuit, { /// Create a new iterator over the commands of a circuit. pub(super) fn new(circ: &'circ Circ) -> Self { @@ -77,7 +74,7 @@ where }) .collect(); - let nodes = petgraph::algo::toposort(circ, None).unwrap(); + let nodes = petgraph::algo::toposort(&circ.as_petgraph(), None).unwrap(); Self { circ, nodes, @@ -157,8 +154,7 @@ where impl<'circ, Circ> Iterator for CommandIterator<'circ, Circ> where - Circ: HierarchyView<'circ>, - for<'a> &'a Circ: GraphBase + IntoNeighborsDirected + IntoNodeIdentifiers, + Circ: Circuit, { type Item = Command; @@ -182,12 +178,7 @@ where } } -impl<'circ, Circ> FusedIterator for CommandIterator<'circ, Circ> -where - Circ: HierarchyView<'circ>, - for<'a> &'a Circ: GraphBase + IntoNeighborsDirected + IntoNodeIdentifiers, -{ -} +impl<'circ, Circ> FusedIterator for CommandIterator<'circ, Circ> where Circ: Circuit {} #[cfg(test)] mod test { diff --git a/src/circuit/hash.rs b/src/circuit/hash.rs index b62ddd46..e9a0109d 100644 --- a/src/circuit/hash.rs +++ b/src/circuit/hash.rs @@ -4,7 +4,6 @@ use core::panic; use std::hash::{Hash, Hasher}; use fxhash::{FxHashMap, FxHasher64}; -use hugr::hugr::views::HierarchyView; use hugr::ops::{LeafOp, OpName, OpTag, OpTrait, OpType}; use hugr::types::TypeBound; use hugr::{HugrView, Node, Port}; @@ -29,14 +28,15 @@ pub trait CircuitHash<'circ>: HugrView { impl<'circ, T> CircuitHash<'circ> for T where - T: HugrView + HierarchyView<'circ>, - for<'a> &'a T: - pg::GraphBase + pg::IntoNeighborsDirected + pg::IntoNodeIdentifiers, + T: HugrView, { fn circuit_hash(&'circ self) -> u64 { let mut hash_state = HashState::default(); - for node in pg::Topo::new(self).iter(self).filter(|&n| n != self.root()) { + for node in pg::Topo::new(&self.as_petgraph()) + .iter(&self.as_petgraph()) + .filter(|&n| n != self.root()) + { let hash = hash_node(self, node, &mut hash_state); hash_state.set_node(self, node, hash); } diff --git a/src/json.rs b/src/json.rs index 9afc2189..ff9ebc85 100644 --- a/src/json.rs +++ b/src/json.rs @@ -38,7 +38,7 @@ pub trait TKETDecode: Sized { /// Convert the serialized circuit to a [`Hugr`]. fn decode(self) -> Result; /// Convert a [`Hugr`] to a new serialized circuit. - fn encode<'circ>(circuit: &'circ impl Circuit<'circ>) -> Result; + fn encode(circuit: &impl Circuit) -> Result; } impl TKETDecode for SerialCircuit { @@ -60,7 +60,7 @@ impl TKETDecode for SerialCircuit { Ok(decoder.finish()) } - fn encode<'circ>(circ: &'circ impl Circuit<'circ>) -> Result { + fn encode(circ: &impl Circuit) -> Result { let mut encoder = JsonEncoder::new(circ); for com in circ.commands() { let optype = circ.command_optype(&com); diff --git a/src/json/encoder.rs b/src/json/encoder.rs index ad81b653..e087d147 100644 --- a/src/json/encoder.rs +++ b/src/json/encoder.rs @@ -40,7 +40,7 @@ pub(super) struct JsonEncoder { impl JsonEncoder { /// Create a new [`JsonEncoder`] from a [`Circuit`]. - pub fn new<'circ>(circ: &impl Circuit<'circ>) -> Self { + pub fn new(circ: &impl Circuit) -> Self { let name = circ.name().map(str::to_string); // Compute the linear qubit and bit registers. Each one have independent diff --git a/src/ops.rs b/src/ops.rs index 8783e698..f29894c5 100644 --- a/src/ops.rs +++ b/src/ops.rs @@ -289,12 +289,8 @@ pub(crate) mod test { use std::sync::Arc; - use hugr::{ - extension::OpDef, - hugr::views::{HierarchyView, SiblingGraph}, - ops::handle::DfgID, - Hugr, HugrView, - }; + use hugr::hugr::views::HierarchyView; + use hugr::{extension::OpDef, hugr::views::SiblingGraph, ops::handle::DfgID, Hugr, HugrView}; use rstest::{fixture, rstest}; use crate::{circuit::Circuit, ops::SimpleOpEnum, utils::build_simple_circuit}; diff --git a/src/portmatching/matcher.rs b/src/portmatching/matcher.rs index 4dcd8915..fe3655ff 100644 --- a/src/portmatching/matcher.rs +++ b/src/portmatching/matcher.rs @@ -73,7 +73,7 @@ pub struct PatternMatch<'a, C> { pub(super) root: Node, } -impl<'a, C: Circuit<'a> + Clone> PatternMatch<'a, C> { +impl<'a, C: Circuit + Clone> PatternMatch<'a, C> { /// The matcher's pattern ID of the match. pub fn pattern_id(&self) -> PatternID { self.pattern @@ -187,7 +187,7 @@ impl<'a, C: Circuit<'a> + Clone> PatternMatch<'a, C> { } } -impl<'a, C: Circuit<'a>> Debug for PatternMatch<'a, C> { +impl<'a, C: Circuit> Debug for PatternMatch<'a, C> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.debug_struct("PatternMatch") .field("root", &self.root) @@ -237,10 +237,7 @@ impl PatternMatcher { } /// Find all convex pattern matches in a circuit. - pub fn find_matches<'a, C: Circuit<'a> + Clone>( - &self, - circuit: &'a C, - ) -> Vec> { + pub fn find_matches<'a, C: Circuit + Clone>(&self, circuit: &'a C) -> Vec> { let mut checker = ConvexChecker::new(circuit); circuit .commands() @@ -249,7 +246,7 @@ impl PatternMatcher { } /// Find all convex pattern matches in a circuit rooted at a given node. - fn find_rooted_matches<'a, C: Circuit<'a> + Clone>( + fn find_rooted_matches<'a, C: Circuit + Clone>( &self, circ: &'a C, root: Node, @@ -385,8 +382,8 @@ fn compatible_offsets((_, pout): &(Port, Port), (pin, _): &(Port, Port)) -> bool } /// Check if an edge `e` is valid in a portgraph `g` without weights. -pub(crate) fn validate_unweighted_edge<'circ>( - circ: &impl Circuit<'circ>, +pub(crate) fn validate_unweighted_edge( + circ: &impl Circuit, ) -> impl for<'a> Fn(Node, &'a PEdge) -> Option + '_ { move |src, &(src_port, tgt_port)| { let (next_node, _) = circ @@ -397,8 +394,8 @@ pub(crate) fn validate_unweighted_edge<'circ>( } /// Check if a node `n` is valid in a weighted portgraph `g`. -pub(crate) fn validate_weighted_node<'circ>( - circ: &impl Circuit<'circ>, +pub(crate) fn validate_weighted_node( + circ: &impl Circuit, ) -> impl for<'a> Fn(Node, &PNode) -> bool + '_ { move |v, prop| { let v_weight = MatchOp::try_from(circ.get_optype(v).clone()); @@ -425,11 +422,7 @@ fn handle_match_error(match_res: Result, root: Node) #[cfg(test)] mod tests { - use std::sync::OnceLock; - - use hugr::hugr::views::{DescendantsGraph, HierarchyView}; - use hugr::ops::handle::DfgID; - use hugr::{Hugr, HugrView}; + use hugr::Hugr; use itertools::Itertools; use crate::utils::build_simple_circuit; @@ -437,31 +430,22 @@ mod tests { use super::{CircuitPattern, PatternMatcher}; - static H_CX: OnceLock = OnceLock::new(); - static CX_CX: OnceLock = OnceLock::new(); - - fn h_cx<'a>() -> DescendantsGraph<'a, DfgID> { - let circ = H_CX.get_or_init(|| { - build_simple_circuit(2, |circ| { - circ.append(T2Op::CX, [0, 1]).unwrap(); - circ.append(T2Op::H, [0]).unwrap(); - Ok(()) - }) - .unwrap() - }); - DescendantsGraph::new(circ, circ.root()) + fn h_cx() -> Hugr { + build_simple_circuit(2, |circ| { + circ.append(T2Op::CX, [0, 1]).unwrap(); + circ.append(T2Op::H, [0]).unwrap(); + Ok(()) + }) + .unwrap() } - fn cx_xc<'a>() -> DescendantsGraph<'a, DfgID> { - let circ = CX_CX.get_or_init(|| { - build_simple_circuit(2, |circ| { - circ.append(T2Op::CX, [0, 1]).unwrap(); - circ.append(T2Op::CX, [1, 0]).unwrap(); - Ok(()) - }) - .unwrap() - }); - DescendantsGraph::new(circ, circ.root()) + fn cx_xc() -> Hugr { + build_simple_circuit(2, |circ| { + circ.append(T2Op::CX, [0, 1]).unwrap(); + circ.append(T2Op::CX, [1, 0]).unwrap(); + Ok(()) + }) + .unwrap() } #[test] diff --git a/src/portmatching/pattern.rs b/src/portmatching/pattern.rs index 36e3b56f..0d123f10 100644 --- a/src/portmatching/pattern.rs +++ b/src/portmatching/pattern.rs @@ -33,9 +33,7 @@ impl CircuitPattern { } /// Construct a pattern from a circuit. - pub fn try_from_circuit<'circ, C: Circuit<'circ>>( - circuit: &'circ C, - ) -> Result { + pub fn try_from_circuit(circuit: &C) -> Result { if circuit.num_gates() == 0 { return Err(InvalidPattern::EmptyCircuit); } @@ -79,11 +77,7 @@ impl CircuitPattern { } /// Compute the map from pattern nodes to circuit nodes in `circ`. - pub fn get_match_map<'a, C: Circuit<'a>>( - &self, - root: Node, - circ: &C, - ) -> Option> { + pub fn get_match_map(&self, root: Node, circ: &C) -> Option> { let single_matcher = SinglePatternMatcher::from_pattern(self.pattern.clone()); single_matcher .get_match_map( @@ -121,9 +115,7 @@ impl From for InvalidPattern { #[cfg(test)] mod tests { - use hugr::hugr::views::{DescendantsGraph, HierarchyView, SiblingGraph}; - use hugr::ops::handle::DfgID; - use hugr::{Hugr, HugrView}; + use hugr::Hugr; use itertools::Itertools; use crate::utils::build_simple_circuit; @@ -143,9 +135,8 @@ mod tests { #[test] fn construct_pattern() { let hugr = h_cx(); - let circ: DescendantsGraph<'_, DfgID> = DescendantsGraph::new(&hugr, hugr.root()); - let p = CircuitPattern::try_from_circuit(&circ).unwrap(); + let p = CircuitPattern::try_from_circuit(&hugr).unwrap(); let edges = p .pattern @@ -163,13 +154,12 @@ mod tests { #[test] fn disconnected_pattern() { - let hugr = build_simple_circuit(2, |circ| { + let circ = build_simple_circuit(2, |circ| { circ.append(T2Op::X, [0])?; circ.append(T2Op::T, [1])?; Ok(()) }) .unwrap(); - let circ: SiblingGraph<'_, DfgID> = SiblingGraph::new(&hugr, hugr.root()); assert_eq!( CircuitPattern::try_from_circuit(&circ).unwrap_err(), InvalidPattern::NotConnected diff --git a/src/portmatching/pyo3.rs b/src/portmatching/pyo3.rs index 41faed6c..a08e90a3 100644 --- a/src/portmatching/pyo3.rs +++ b/src/portmatching/pyo3.rs @@ -121,8 +121,8 @@ impl PyPatternMatch { /// /// Requires references to the circuit and pattern to resolve indices /// into these objects. - pub fn try_from_rust<'circ, C: Circuit<'circ> + Clone>( - m: PatternMatch<'circ, C>, + pub fn try_from_rust( + m: PatternMatch, circ: &C, matcher: &PatternMatcher, ) -> PyResult { diff --git a/src/rewrite.rs b/src/rewrite.rs index d4919878..07f0ee7f 100644 --- a/src/rewrite.rs +++ b/src/rewrite.rs @@ -52,5 +52,5 @@ impl CircuitRewrite { /// Generate rewrite rules for circuits. pub trait Rewriter { /// Get the rewrite rules for a circuit. - fn get_rewrites<'a, C: Circuit<'a> + Clone>(&'a self, circ: &'a C) -> Vec; + fn get_rewrites<'a, C: Circuit + Clone>(&'a self, circ: &'a C) -> Vec; } diff --git a/src/rewrite/ecc_rewriter.rs b/src/rewrite/ecc_rewriter.rs index 32d181ed..af4a3eeb 100644 --- a/src/rewrite/ecc_rewriter.rs +++ b/src/rewrite/ecc_rewriter.rs @@ -96,7 +96,7 @@ impl ECCRewriter { } impl Rewriter for ECCRewriter { - fn get_rewrites<'a, C: Circuit<'a> + Clone>(&'a self, circ: &'a C) -> Vec { + fn get_rewrites<'a, C: Circuit + Clone>(&'a self, circ: &'a C) -> Vec { let matches = self.matcher.find_matches(circ); matches .into_iter() From ac3163a9a59f81cb2dad8c672cbfbb17dd56eb99 Mon Sep 17 00:00:00 2001 From: Luca Mondada <72734770+lmondada@users.noreply.github.com> Date: Wed, 13 Sep 2023 13:40:16 +0200 Subject: [PATCH 04/14] chore: Update to latest Hugr rev bc9692b (#98) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Agustín Borgna <121866228+aborgna-q@users.noreply.github.com> --- Cargo.toml | 2 +- compile-matcher/src/main.rs | 2 +- src/extension.rs | 12 ++++++-- src/ops.rs | 58 +++++++++++++++++++++++++------------ src/portmatching/matcher.rs | 45 ++++++++++++++-------------- src/portmatching/pyo3.rs | 4 +-- src/rewrite.rs | 15 +++++----- src/rewrite/ecc_rewriter.rs | 8 +++-- 8 files changed, 89 insertions(+), 57 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e9d0ce53..1331f0b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,7 +69,7 @@ members = ["pyrs", "compile-matcher"] [workspace.dependencies] -quantinuum-hugr = { git = "https://github.com/CQCL-DEV/hugr", rev = "e23323d" } +quantinuum-hugr = { git = "https://github.com/CQCL-DEV/hugr", rev = "bc9692b" } portgraph = { version = "0.9", features = ["serde"] } pyo3 = { version = "0.19" } itertools = { version = "0.11.0" } diff --git a/compile-matcher/src/main.rs b/compile-matcher/src/main.rs index 2078a94f..5c0f59dc 100644 --- a/compile-matcher/src/main.rs +++ b/compile-matcher/src/main.rs @@ -2,7 +2,7 @@ use std::fs; use std::path::Path; use clap::Parser; -use hugr::hugr::views::SiblingGraph; +use hugr::hugr::views::{HierarchyView, SiblingGraph}; use hugr::ops::handle::DfgID; use hugr::HugrView; use itertools::Itertools; diff --git a/src/extension.rs b/src/extension.rs index 634bbd7b..16c20ea0 100644 --- a/src/extension.rs +++ b/src/extension.rs @@ -8,6 +8,7 @@ use super::json::op::JsonOp; use crate::ops::EXTENSION as T2EXTENSION; use hugr::extension::prelude::PRELUDE; use hugr::extension::{ExtensionId, ExtensionRegistry, SignatureError}; +use hugr::hugr::IdentList; use hugr::ops::custom::{ExternalOp, OpaqueOp}; use hugr::ops::OpName; use hugr::std_extensions::arithmetic::float_types::extension as float_extension; @@ -18,7 +19,7 @@ use lazy_static::lazy_static; use smol_str::SmolStr; /// The ID of the TKET1 extension. -pub const TKET1_EXTENSION_ID: ExtensionId = SmolStr::new_inline("TKET1"); +pub const TKET1_EXTENSION_ID: ExtensionId = IdentList::new_unchecked("TKET1"); /// The name for the linear bit custom type. pub const LINEAR_BIT_NAME: SmolStr = SmolStr::new_inline("LBit"); @@ -26,9 +27,13 @@ pub const LINEAR_BIT_NAME: SmolStr = SmolStr::new_inline("LBit"); /// The name for opaque TKET1 operations. pub const JSON_OP_NAME: SmolStr = SmolStr::new_inline("TKET1 Json Op"); +/// The ID of an opaque TKET1 operation metadata. +pub const JSON_PAYLOAD_NAME: SmolStr = SmolStr::new_inline("TKET1 Json Payload"); + lazy_static! { /// A custom type for the encoded TKET1 operation -static ref TKET1_OP_PAYLOAD : CustomType = CustomType::new("TKET1 Json Op", vec![], TKET1_EXTENSION_ID, TypeBound::Eq); +static ref TKET1_OP_PAYLOAD : CustomType = + TKET1_EXTENSION.get_type(&JSON_PAYLOAD_NAME).unwrap().instantiate_concrete([]).unwrap(); /// The TKET1 extension, containing the opaque TKET1 operations. pub static ref TKET1_EXTENSION: Extension = { @@ -36,7 +41,8 @@ pub static ref TKET1_EXTENSION: Extension = { res.add_type(LINEAR_BIT_NAME, vec![], "A linear bit.".into(), TypeBound::Any.into()).unwrap(); - let json_op_payload = TypeParam::Opaque(TKET1_OP_PAYLOAD.clone()); + let json_op_payload_def = res.add_type(JSON_PAYLOAD_NAME, vec![], "Opaque TKET1 operation metadata.".into(), TypeBound::Eq.into()).unwrap(); + let json_op_payload = TypeParam::Opaque(json_op_payload_def.instantiate_concrete([]).unwrap()); res.add_op_custom_sig( JSON_OP_NAME, "An opaque TKET1 operation.".into(), diff --git a/src/ops.rs b/src/ops.rs index f29894c5..8a383e62 100644 --- a/src/ops.rs +++ b/src/ops.rs @@ -24,7 +24,7 @@ use strum_macros::{Display, EnumIter, EnumString, IntoStaticStr}; use thiserror::Error; /// Name of tket 2 extension. -pub const EXTENSION_ID: ExtensionId = ExtensionId::new_inline("quantum.tket2"); +pub const EXTENSION_ID: ExtensionId = ExtensionId::new_unchecked("quantum.tket2"); #[derive( Clone, @@ -83,7 +83,8 @@ trait SimpleOpEnum: Into<&'static str> + FromStr + Copy + IntoEnumIterator { fn name(&self) -> &str { (*self).into() } - fn from_extension_name(extension: &str, op_name: &str) -> Result; + fn from_extension_name(extension: &ExtensionId, op_name: &str) + -> Result; fn try_from_op_def(op_def: &OpDef) -> Result { Self::from_extension_name(op_def.extension(), op_def.name()) } @@ -97,8 +98,11 @@ trait SimpleOpEnum: Into<&'static str> + FromStr + Copy + IntoEnumIterator { } } -fn from_extension_name(extension: &str, op_name: &str) -> Result { - if extension != EXTENSION_ID { +fn from_extension_name( + extension: &ExtensionId, + op_name: &str, +) -> Result { + if extension != &EXTENSION_ID { return Err(NotT2Op); } T::from_str(op_name).map_err(|_| NotT2Op) @@ -149,8 +153,11 @@ impl SimpleOpEnum for T2Op { ) } - fn from_extension_name(extension: &str, op_name: &str) -> Result { - if extension != EXTENSION_ID { + fn from_extension_name( + extension: &ExtensionId, + op_name: &str, + ) -> Result { + if extension != &EXTENSION_ID { return Err(NotT2Op); } Self::from_str(op_name).map_err(|_| NotT2Op) @@ -172,12 +179,6 @@ impl T2Op { } } -/// The type of the symbolic expression opaque type arg. -pub const SYM_EXPR_T: CustomType = - CustomType::new_simple(SmolStr::new_inline("SymExpr"), EXTENSION_ID, TypeBound::Eq); - -const SYM_OP_ID: SmolStr = SmolStr::new_inline("symbolic_float"); - /// Initialize a new custom symbolic expression constant op from a string. pub fn symbolic_constant_op(s: &str) -> OpType { let value: serde_yaml::Value = s.into(); @@ -185,7 +186,7 @@ pub fn symbolic_constant_op(s: &str) -> OpType { .instantiate_extension_op( &SYM_OP_ID, vec![TypeArg::Opaque { - arg: CustomTypeArg::new(SYM_EXPR_T, value).unwrap(), + arg: CustomTypeArg::new(SYM_EXPR_T.clone(), value).unwrap(), }], ) .unwrap() @@ -220,21 +221,40 @@ pub(crate) fn match_symb_const_op(op: &OpType) -> Option<&str> { } } -fn extension() -> Extension { +/// The name of the symbolic expression opaque type arg. +pub const SYM_EXPR_NAME: SmolStr = SmolStr::new_inline("SymExpr"); + +/// The name of the symbolic expression opaque type arg. +const SYM_OP_ID: SmolStr = SmolStr::new_inline("symbolic_float"); + +lazy_static! { +/// The type of the symbolic expression opaque type arg. +pub static ref SYM_EXPR_T: CustomType = + EXTENSION.get_type(&SYM_EXPR_NAME).unwrap().instantiate_concrete([]).unwrap(); + +pub static ref EXTENSION: Extension = { let mut e = Extension::new(EXTENSION_ID); load_all_ops::(&mut e).expect("add fail"); + + let sym_expr_opdef = e.add_type( + SYM_EXPR_NAME, + vec![], + "Symbolic expression.".into(), + TypeBound::Eq.into(), + ) + .unwrap(); + let sym_expr_param = TypeParam::Opaque(sym_expr_opdef.instantiate_concrete([]).unwrap()); + e.add_op_custom_sig_simple( SYM_OP_ID, "Store a sympy expression that can be evaluated to a float.".to_string(), - vec![TypeParam::Opaque(SYM_EXPR_T)], + vec![sym_expr_param], |_: &[TypeArg]| Ok(FunctionType::new(type_row![], type_row![FLOAT64_TYPE])), ) .unwrap(); - e -} -lazy_static! { - pub static ref EXTENSION: Extension = extension(); + e +}; } // From implementations could be made generic over SimpleOpEnum diff --git a/src/portmatching/matcher.rs b/src/portmatching/matcher.rs index fe3655ff..30075593 100644 --- a/src/portmatching/matcher.rs +++ b/src/portmatching/matcher.rs @@ -63,8 +63,8 @@ impl TryFrom for MatchOp { /// The pattern is identified by a [`PatternID`] that can be used to retrieve the /// pattern from the matcher. #[derive(Clone)] -pub struct PatternMatch<'a, C> { - position: Subcircuit<'a, C>, +pub struct PatternMatch { + position: Subcircuit, pattern: PatternID, /// The root of the pattern in the circuit. /// @@ -73,7 +73,7 @@ pub struct PatternMatch<'a, C> { pub(super) root: Node, } -impl<'a, C: Circuit + Clone> PatternMatch<'a, C> { +impl PatternMatch { /// The matcher's pattern ID of the match. pub fn pattern_id(&self) -> PatternID { self.pattern @@ -95,7 +95,7 @@ impl<'a, C: Circuit + Clone> PatternMatch<'a, C> { pub fn try_from_root_match( root: Node, pattern: PatternID, - circ: &'a C, + circ: &impl Circuit, matcher: &PatternMatcher, ) -> Result { let mut checker = ConvexChecker::new(circ); @@ -108,12 +108,12 @@ impl<'a, C: Circuit + Clone> PatternMatch<'a, C> { /// checker object to speed up convexity checking. /// /// See [`PatternMatch::try_from_root_match`] for more details. - pub fn try_from_root_match_with_checker( + pub fn try_from_root_match_with_checker<'c, C: Circuit>( root: Node, pattern: PatternID, - circ: &'a C, + circ: &'c C, matcher: &PatternMatcher, - checker: &mut ConvexChecker<'a, C>, + checker: &mut ConvexChecker<'c, C>, ) -> Result { let pattern_ref = matcher .get_pattern(pattern) @@ -148,7 +148,7 @@ impl<'a, C: Circuit + Clone> PatternMatch<'a, C> { pub fn try_from_io( root: Node, pattern: PatternID, - circ: &'a C, + circ: &impl Circuit, inputs: Vec>, outputs: Vec<(Node, Port)>, ) -> Result { @@ -164,16 +164,15 @@ impl<'a, C: Circuit + Clone> PatternMatch<'a, C> { /// /// This checks at construction time that the match is convex. This will /// have runtime linear in the size of the circuit. - pub fn try_from_io_with_checker( + pub fn try_from_io_with_checker<'c, C: Circuit>( root: Node, pattern: PatternID, - circ: &'a C, + circ: &'c C, inputs: Vec>, outputs: Vec<(Node, Port)>, - checker: &mut ConvexChecker<'a, C>, + checker: &mut ConvexChecker<'c, C>, ) -> Result { - let subgraph = - SiblingSubgraph::try_from_boundary_ports_with_checker(circ, inputs, outputs, checker)?; + let subgraph = SiblingSubgraph::try_new_with_checker(inputs, outputs, circ, checker)?; Ok(Self { position: subgraph.into(), pattern, @@ -182,12 +181,16 @@ impl<'a, C: Circuit + Clone> PatternMatch<'a, C> { } /// Construct a rewrite to replace `self` with `repl`. - pub fn to_rewrite(&self, repl: Hugr) -> Result { - CircuitRewrite::try_new(&self.position, repl) + pub fn to_rewrite( + &self, + source: &Hugr, + target: Hugr, + ) -> Result { + CircuitRewrite::try_new(&self.position, source, target) } } -impl<'a, C: Circuit> Debug for PatternMatch<'a, C> { +impl Debug for PatternMatch { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.debug_struct("PatternMatch") .field("root", &self.root) @@ -237,7 +240,7 @@ impl PatternMatcher { } /// Find all convex pattern matches in a circuit. - pub fn find_matches<'a, C: Circuit + Clone>(&self, circuit: &'a C) -> Vec> { + pub fn find_matches(&self, circuit: &C) -> Vec { let mut checker = ConvexChecker::new(circuit); circuit .commands() @@ -246,12 +249,12 @@ impl PatternMatcher { } /// Find all convex pattern matches in a circuit rooted at a given node. - fn find_rooted_matches<'a, C: Circuit + Clone>( + fn find_rooted_matches<'c, C: Circuit + Clone>( &self, - circ: &'a C, + circ: &'c C, root: Node, - checker: &mut ConvexChecker<'a, C>, - ) -> Vec> { + checker: &mut ConvexChecker<'c, C>, + ) -> Vec { self.automaton .run( root, diff --git a/src/portmatching/pyo3.rs b/src/portmatching/pyo3.rs index a08e90a3..c252814c 100644 --- a/src/portmatching/pyo3.rs +++ b/src/portmatching/pyo3.rs @@ -122,7 +122,7 @@ impl PyPatternMatch { /// Requires references to the circuit and pattern to resolve indices /// into these objects. pub fn try_from_rust( - m: PatternMatch, + m: PatternMatch, circ: &C, matcher: &PatternMatcher, ) -> PyResult { @@ -176,7 +176,7 @@ impl PyPatternMatch { outputs, ) .expect("Invalid PyCircuitMatch object") - .to_rewrite(pyobj_as_hugr(replacement)?) + .to_rewrite(&hugr, pyobj_as_hugr(replacement)?) .map_err(|e| PyInvalidReplacement::new_err(e.to_string())) } } diff --git a/src/rewrite.rs b/src/rewrite.rs index 07f0ee7f..1b972c0f 100644 --- a/src/rewrite.rs +++ b/src/rewrite.rs @@ -10,7 +10,7 @@ use derive_more::{From, Into}; use hugr::hugr::views::sibling_subgraph::InvalidReplacement; use hugr::{ hugr::{hugrmut::HugrMut, views::SiblingSubgraph, Rewrite, SimpleReplacementError}, - Hugr, HugrView, SimpleReplacement, + Hugr, SimpleReplacement, }; #[cfg(feature = "pyo3")] @@ -20,8 +20,8 @@ use crate::circuit::Circuit; /// A subcircuit of a circuit. #[derive(Debug, Clone, From, Into)] -pub struct Subcircuit<'a, C> { - pub(crate) subgraph: SiblingSubgraph<'a, C>, +pub struct Subcircuit { + pub(crate) subgraph: SiblingSubgraph, } /// A rewrite rule for circuits. @@ -31,13 +31,14 @@ pub struct CircuitRewrite(SimpleReplacement); impl CircuitRewrite { /// Create a new rewrite rule. - pub fn try_new( - source_position: &Subcircuit<'_, C>, + pub fn try_new( + source_position: &Subcircuit, + source: &Hugr, target: Hugr, ) -> Result { source_position .subgraph - .create_simple_replacement(target) + .create_simple_replacement(source, target) .map(Self) } @@ -52,5 +53,5 @@ impl CircuitRewrite { /// Generate rewrite rules for circuits. pub trait Rewriter { /// Get the rewrite rules for a circuit. - fn get_rewrites<'a, C: Circuit + Clone>(&'a self, circ: &'a C) -> Vec; + fn get_rewrites(&self, circ: &C) -> Vec; } diff --git a/src/rewrite/ecc_rewriter.rs b/src/rewrite/ecc_rewriter.rs index af4a3eeb..8a7fcebb 100644 --- a/src/rewrite/ecc_rewriter.rs +++ b/src/rewrite/ecc_rewriter.rs @@ -96,14 +96,16 @@ impl ECCRewriter { } impl Rewriter for ECCRewriter { - fn get_rewrites<'a, C: Circuit + Clone>(&'a self, circ: &'a C) -> Vec { + fn get_rewrites(&self, circ: &C) -> Vec { let matches = self.matcher.find_matches(circ); matches .into_iter() .flat_map(|m| { let pattern_id = m.pattern_id(); - self.get_targets(pattern_id) - .map(move |repl| m.to_rewrite(repl.clone()).expect("invalid replacement")) + self.get_targets(pattern_id).map(move |repl| { + m.to_rewrite(circ.base_hugr(), repl.clone()) + .expect("invalid replacement") + }) }) .collect() } From 54a7ad105927e2e4f78850348186c2a02519dfc9 Mon Sep 17 00:00:00 2001 From: Luca Mondada <72734770+lmondada@users.noreply.github.com> Date: Wed, 13 Sep 2023 15:37:03 +0200 Subject: [PATCH 05/14] feat: Add RewriteStrategies (#99) --- Cargo.toml | 1 + src/rewrite.rs | 61 ++++++++++- src/rewrite/strategy.rs | 225 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 286 insertions(+), 1 deletion(-) create mode 100644 src/rewrite/strategy.rs diff --git a/Cargo.toml b/Cargo.toml index 1331f0b5..f7c5045f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,6 +41,7 @@ strum = "0.25.0" fxhash = "0.2.1" rmp-serde = { version = "1.1.2", optional = true } delegate = "0.10.0" +bytemuck = "1.14.0" [features] pyo3 = [ diff --git a/src/rewrite.rs b/src/rewrite.rs index 1b972c0f..ebd55d6f 100644 --- a/src/rewrite.rs +++ b/src/rewrite.rs @@ -2,12 +2,16 @@ #[cfg(feature = "portmatching")] pub mod ecc_rewriter; +pub mod strategy; + +use bytemuck::TransparentWrapper; #[cfg(feature = "portmatching")] pub use ecc_rewriter::ECCRewriter; use delegate::delegate; use derive_more::{From, Into}; -use hugr::hugr::views::sibling_subgraph::InvalidReplacement; +use hugr::hugr::views::sibling_subgraph::{InvalidReplacement, InvalidSubgraph}; +use hugr::Node; use hugr::{ hugr::{hugrmut::HugrMut, views::SiblingSubgraph, Rewrite, SimpleReplacementError}, Hugr, SimpleReplacement, @@ -20,10 +24,45 @@ use crate::circuit::Circuit; /// A subcircuit of a circuit. #[derive(Debug, Clone, From, Into)] +#[repr(transparent)] pub struct Subcircuit { pub(crate) subgraph: SiblingSubgraph, } +unsafe impl TransparentWrapper for Subcircuit {} + +impl Subcircuit { + /// Create a new subcircuit induced from a set of nodes. + pub fn try_from_nodes( + nodes: impl Into>, + hugr: &Hugr, + ) -> Result { + let subgraph = SiblingSubgraph::try_from_nodes(nodes, hugr)?; + Ok(Self { subgraph }) + } + + /// Nodes in the subcircuit. + pub fn nodes(&self) -> &[Node] { + self.subgraph.nodes() + } + + /// Number of nodes in the subcircuit. + pub fn node_count(&self) -> usize { + self.subgraph.node_count() + } + + /// Create a rewrite rule to replace the subcircuit. + pub fn create_rewrite( + &self, + source: &Hugr, + target: Hugr, + ) -> Result { + Ok(CircuitRewrite( + self.subgraph.create_simple_replacement(source, target)?, + )) + } +} + /// A rewrite rule for circuits. #[cfg_attr(feature = "pyo3", pyclass)] #[derive(Debug, Clone, From, Into)] @@ -42,6 +81,26 @@ impl CircuitRewrite { .map(Self) } + /// Number of nodes added or removed by the rewrite. + /// + /// The difference between the new number of nodes minus the old. A positive + /// number is an increase in node count, a negative number is a decrease. + pub fn node_count_delta(&self) -> isize { + let new_count = self.replacement().num_gates() as isize; + let old_count = self.subcircuit().node_count() as isize; + new_count - old_count + } + + /// The subcircuit that is replaced. + pub fn subcircuit(&self) -> &Subcircuit { + Subcircuit::wrap_ref(self.0.subgraph()) + } + + /// The replacement subcircuit. + pub fn replacement(&self) -> &Hugr { + self.0.replacement() + } + delegate! { to self.0 { /// Apply the rewrite rule to a circuit. diff --git a/src/rewrite/strategy.rs b/src/rewrite/strategy.rs new file mode 100644 index 00000000..cfea36f2 --- /dev/null +++ b/src/rewrite/strategy.rs @@ -0,0 +1,225 @@ +//! Rewriting strategies for circuit optimisation. +//! +//! This module contains the [`RewriteStrategy`] trait, which is currently +//! implemented by +//! - [`GreedyRewriteStrategy`], which applies as many rewrites as possible +//! on one circuit, and +//! - [`ExhaustiveRewriteStrategy`], which clones the original circuit as many +//! times as there are possible rewrites and applies a different rewrite +//! to every circuit. + +use std::collections::HashSet; + +use hugr::Hugr; +use itertools::Itertools; + +use crate::circuit::Circuit; + +use super::CircuitRewrite; + +/// Rewriting strategies for circuit optimisation. +/// +/// A rewrite strategy takes a set of possible rewrites and applies them +/// to a circuit according to a strategy. It returns a list of new circuits, +/// each obtained by applying one or several non-overlapping rewrites to the +/// original circuit. +pub trait RewriteStrategy { + /// Apply a set of rewrites to a circuit. + fn apply_rewrites( + &self, + rewrites: impl IntoIterator, + circ: &Hugr, + ) -> Vec; +} + +/// A rewrite strategy applying as many non-overlapping rewrites as possible. +/// +/// All possible rewrites are sorted by the number of gates they remove from +/// the circuit and are applied in order. If a rewrite overlaps with a rewrite +/// that has already been applied, it is skipped. +/// +/// This strategy will always return exactly one circuit: the original circuit +/// with as many rewrites applied as possible. +/// +/// Rewrites are only applied if they strictly decrease gate count. +pub struct GreedyRewriteStrategy; + +impl RewriteStrategy for GreedyRewriteStrategy { + fn apply_rewrites( + &self, + rewrites: impl IntoIterator, + circ: &Hugr, + ) -> Vec { + let rewrites = rewrites + .into_iter() + .sorted_by_key(|rw| rw.node_count_delta()) + .take_while(|rw| rw.node_count_delta() < 0); + let mut changed_nodes = HashSet::new(); + let mut circ = circ.clone(); + for rewrite in rewrites { + if rewrite + .subcircuit() + .nodes() + .iter() + .any(|n| changed_nodes.contains(n)) + { + continue; + } + changed_nodes.extend(rewrite.subcircuit().nodes().iter().copied()); + rewrite + .apply(&mut circ) + .expect("Could not perform rewrite in greedy strategy"); + } + vec![circ] + } +} + +/// A rewrite strategy that explores applying each rewrite to copies of the +/// circuit. +/// +/// The parameter gamma controls how greedy the algorithm should be. It allows +/// a rewrite C1 -> C2 if C2 has at most gamma times as many gates as C1: +/// +/// $|C2| < gamma * |C1|$ +/// +/// gamma = 1 is the greedy strategy where a rewrite is only allowed if it +/// strictly reduces the gate count. The default is gamma = 1.0001, as set +/// in the Quartz paper. This essentially allows rewrites that improve or leave +/// the number of nodes unchanged. +pub struct ExhaustiveRewriteStrategy { + /// The gamma parameter. + pub gamma: f64, +} + +impl Default for ExhaustiveRewriteStrategy { + fn default() -> Self { + Self { gamma: 1.0001 } + } +} + +impl RewriteStrategy for ExhaustiveRewriteStrategy { + fn apply_rewrites( + &self, + rewrites: impl IntoIterator, + circ: &Hugr, + ) -> Vec { + rewrites + .into_iter() + .filter(|rw| { + let old_count = rw.subcircuit().node_count() as f64; + let new_count = rw.replacement().num_gates() as f64; + new_count < old_count * self.gamma + }) + .map(|rw| { + let mut circ = circ.clone(); + rw.apply(&mut circ).expect("invalid pattern match"); + circ + }) + .collect() + } +} + +#[cfg(test)] +mod tests { + use super::*; + use hugr::{ + ops::{OpTag, OpTrait}, + Hugr, HugrView, Node, + }; + use itertools::Itertools; + + use crate::{ + circuit::Circuit, + rewrite::{CircuitRewrite, Subcircuit}, + utils::build_simple_circuit, + T2Op, + }; + + fn n_cx(n_gates: usize) -> Hugr { + let qbs = [0, 1]; + build_simple_circuit(2, |circ| { + for _ in 0..n_gates { + circ.append(T2Op::CX, qbs).unwrap(); + } + Ok(()) + }) + .unwrap() + } + + /// Rewrite cx_nodes -> empty + fn rw_to_empty(hugr: &Hugr, cx_nodes: impl Into>) -> CircuitRewrite { + let subcirc = Subcircuit::try_from_nodes(cx_nodes, hugr).unwrap(); + subcirc.create_rewrite(hugr, n_cx(0)).unwrap() + } + + /// Rewrite cx_nodes -> 10x CX + fn rw_to_full(hugr: &Hugr, cx_nodes: impl Into>) -> CircuitRewrite { + let subcirc = Subcircuit::try_from_nodes(cx_nodes, hugr).unwrap(); + subcirc.create_rewrite(hugr, n_cx(10)).unwrap() + } + + #[test] + fn test_greedy_strategy() { + let circ = n_cx(10); + let cx_gates = circ + .nodes() + .filter(|&n| OpTag::Leaf.is_superset(circ.get_optype(n).tag())) + .collect_vec(); + + let rws = [ + rw_to_empty(&circ, cx_gates[0..2].to_vec()), + rw_to_full(&circ, cx_gates[4..7].to_vec()), + rw_to_empty(&circ, cx_gates[4..6].to_vec()), + rw_to_empty(&circ, cx_gates[9..10].to_vec()), + ]; + + let strategy = GreedyRewriteStrategy; + let rewritten = strategy.apply_rewrites(rws, &circ); + assert_eq!(rewritten.len(), 1); + assert_eq!(rewritten[0].num_gates(), 5); + } + + #[test] + fn test_exhaustive_default_strategy() { + let circ = n_cx(10); + let cx_gates = circ + .nodes() + .filter(|&n| OpTag::Leaf.is_superset(circ.get_optype(n).tag())) + .collect_vec(); + + let rws = [ + rw_to_empty(&circ, cx_gates[0..2].to_vec()), + rw_to_full(&circ, cx_gates[4..7].to_vec()), + rw_to_empty(&circ, cx_gates[4..8].to_vec()), + rw_to_empty(&circ, cx_gates[9..10].to_vec()), + ]; + + let strategy = ExhaustiveRewriteStrategy::default(); + let rewritten = strategy.apply_rewrites(rws, &circ); + let exp_circ_lens = HashSet::from_iter([8, 6, 9]); + let circ_lens: HashSet<_> = rewritten.iter().map(|c| c.num_gates()).collect(); + assert_eq!(circ_lens, exp_circ_lens); + } + + #[test] + fn test_exhaustive_generous_strategy() { + let circ = n_cx(10); + let cx_gates = circ + .nodes() + .filter(|&n| OpTag::Leaf.is_superset(circ.get_optype(n).tag())) + .collect_vec(); + + let rws = [ + rw_to_empty(&circ, cx_gates[0..2].to_vec()), + rw_to_full(&circ, cx_gates[4..7].to_vec()), + rw_to_empty(&circ, cx_gates[4..8].to_vec()), + rw_to_empty(&circ, cx_gates[9..10].to_vec()), + ]; + + let strategy = ExhaustiveRewriteStrategy { gamma: 10. }; + let rewritten = strategy.apply_rewrites(rws, &circ); + let exp_circ_lens = HashSet::from_iter([8, 17, 6, 9]); + let circ_lens: HashSet<_> = rewritten.iter().map(|c| c.num_gates()).collect(); + assert_eq!(circ_lens, exp_circ_lens); + } +} From 19d03a64d3e3d563a27eee736b1ffb26900ad9af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Wed, 13 Sep 2023 15:41:46 +0200 Subject: [PATCH 06/14] chore: Delete some unused files, label others (#102) - Delete a bunch of unused files - Keep some unused files in `src/passes/`, but prefix them with `_` while they are not being compiled. Some of these we may still want to port to Hugr+tket2, but now they are clearly marked as unused. --- pyrs/src/libcopuy | 119 ----- src/circuit.rs | 6 - src/circuit/py_circuit.rs | 427 ------------------ src/circuit/unitarybox.rs | 71 --- src/passes/{classical.rs => _classical.rs} | 0 .../{multi_search.rs => _multi_search.rs} | 0 src/passes/{redundancy.rs => _redundancy.rs} | 0 src/passes/{squash.rs => _squash.rs} | 0 src/passes/taso/{tests.rs => _tests.rs} | 0 9 files changed, 623 deletions(-) delete mode 100644 pyrs/src/libcopuy delete mode 100644 src/circuit/py_circuit.rs delete mode 100644 src/circuit/unitarybox.rs rename src/passes/{classical.rs => _classical.rs} (100%) rename src/passes/{multi_search.rs => _multi_search.rs} (100%) rename src/passes/{redundancy.rs => _redundancy.rs} (100%) rename src/passes/{squash.rs => _squash.rs} (100%) rename src/passes/taso/{tests.rs => _tests.rs} (100%) diff --git a/pyrs/src/libcopuy b/pyrs/src/libcopuy deleted file mode 100644 index 173e369d..00000000 --- a/pyrs/src/libcopuy +++ /dev/null @@ -1,119 +0,0 @@ -use portgraph::graph::{Direction, NodeIndex}; -use pyo3::create_exception; -use pyo3::exceptions::PyException; -use pyo3::prelude::*; -use tket2::circuit::circuit::{Circuit, CircuitRewrite}; -use tket2::circuit::dag::VertexProperties; -use tket2::circuit::operation::WireType; -use tket2::circuit::py_circuit::{count_pycustom, PyRewriteIter, PySubgraph}; -use tket2::passes::pattern::{node_equality, Match}; -use tket2::passes::{apply_greedy, CircFixedStructPattern, PatternRewriter, RewriteGenerator}; -use tket_json_rs::optype::OpType; - -fn _wrap_tket_conversion Circuit>( - f: F, -) -> impl FnOnce(Py) -> PyResult> { - |c: Py| (f)(Circuit::_from_tket1(c)).to_tket1() -} - -#[pyfunction] -fn remove_redundancies(c: Py) -> PyResult> { - _wrap_tket_conversion(|circ| tket2::passes::squash::cx_cancel_pass(circ).0)(c) -} - -create_exception!(pyrs, PyValidateError, PyException); - -#[pyfunction] -fn check_soundness(circ: Circuit) -> PyResult<()> { - tket2::validate::check_soundness(&circ).map_err(|e| PyValidateError::new_err(e.to_string())) -} - -#[pyfunction] -fn greedy_pattern_rewrite( - circ: Circuit, - pattern: Circuit, - rewrite_fn: Py, - node_match_fn: Option>, -) -> Circuit { - assert!(Python::with_gil(|py| rewrite_fn.as_ref(py).is_callable())); - - // gotta be a better way to do this.... - if let Some(node_match_fn) = node_match_fn { - apply_greedy(circ, |c| { - // todo allow spec of node comp closure too - let pattern = CircFixedStructPattern::from_circ( - pattern.clone(), - |_: &_, n: NodeIndex, op: &VertexProperties| { - Python::with_gil(|py| { - node_match_fn - .call1(py, (n, &op.op)) - .unwrap() - .extract(py) - .unwrap() - }) - }, - ); - PatternRewriter::new(pattern, |m: Match| { - let outc: Circuit = Python::with_gil(|py| { - let pd = m.into_py(py); - rewrite_fn.call1(py, (pd,)).unwrap().extract(py).unwrap() - }); - (outc, 0.0) - }) - .into_rewrites(c) - .next() - }) - .unwrap() - .0 - } else { - apply_greedy(circ, |c| { - // todo allow spec of node comp closure too - let pattern = CircFixedStructPattern::from_circ(pattern.clone(), node_equality()); - PatternRewriter::new(pattern, |m: Match| { - let outc: Circuit = Python::with_gil(|py| { - let pd = m.into_py(py); - rewrite_fn.call1(py, (pd,)).unwrap().extract(py).unwrap() - }); - (outc, 0.0) - }) - .into_rewrites(c) - .next() - }) - .unwrap() - .0 - } -} - -#[pyfunction] -fn greedy_iter_rewrite(circ: Circuit, it_closure: Py) -> Circuit { - Python::with_gil(|py| { - apply_greedy(circ, |c| { - PyRewriteIter::new(it_closure.call1(py, (c.clone(),)).unwrap(), py).next() - }) - .unwrap() - .0 - }) -} -/// A Python module implemented in Rust. -#[pymodule] -fn pyrs(_py: Python, m: &PyModule) -> PyResult<()> { - m.add_function(wrap_pyfunction!(remove_redundancies, m)?)?; - m.add_function(wrap_pyfunction!(tket2::passes::decompose_custom_pass, m)?)?; - m.add_function(wrap_pyfunction!(count_pycustom, m)?)?; - m.add_function(wrap_pyfunction!(greedy_pattern_rewrite, m)?)?; - m.add_function(wrap_pyfunction!(greedy_iter_rewrite, m)?)?; - m.add_function(wrap_pyfunction!(check_soundness, m)?)?; - m.add_class::()?; - m.add_class::()?; - m.add_class::()?; - m.add_class::()?; - m.add_class::()?; - m.add_class::()?; - m.add_class::()?; - m.add_class::()?; - m.add_class::()?; - m.add_class::()?; - m.add_class::()?; - m.add("ValidateError", _py.get_type::())?; - Ok(()) -} diff --git a/src/circuit.rs b/src/circuit.rs index e7ffc4fc..40fca617 100644 --- a/src/circuit.rs +++ b/src/circuit.rs @@ -5,12 +5,6 @@ mod hash; pub use hash::CircuitHash; -//#[cfg(feature = "pyo3")] -//pub mod py_circuit; - -//#[cfg(feature = "tkcxx")] -//pub mod unitarybox; - use self::command::{Command, CommandIterator}; use hugr::extension::prelude::QB_T; diff --git a/src/circuit/py_circuit.rs b/src/circuit/py_circuit.rs deleted file mode 100644 index 67076bdd..00000000 --- a/src/circuit/py_circuit.rs +++ /dev/null @@ -1,427 +0,0 @@ -use std::collections::HashSet; - -use crate::circuit::operation::{Quat, Rational}; -use portgraph::graph::{EdgeIndex, NodeIndex}; -use portgraph::substitute::{BoundedSubgraph, SubgraphRef}; - -use super::{ - circuit::{Circuit, CircuitError, CircuitRewrite}, - operation::{AngleValue, ConstValue, CustomOp, Op, Param, Signature, WireType}, -}; -use cgmath::num_traits::CheckedDiv; -use pyo3::{ - exceptions::{PyNotImplementedError, PyStopIteration, PyZeroDivisionError}, - prelude::*, - pyclass::CompareOp, - types::PyType, -}; - -use tket_json_rs::{circuit_json::SerialCircuit, optype::OpType}; - -use super::operation::ToCircuitFail; - -#[derive(FromPyObject)] -enum SpecialOp<'a> { - Custom(&'a PyAny), // This extraction never fails -} - -impl IntoPy for &Op { - fn into_py(self, py: Python<'_>) -> PyObject { - let convert: Result = self.try_into(); - if let Ok(pyop) = convert { - pyop.into_py(py) - } else { - // TODO add conversions for complex ops - panic!("No known conversion from Op: {self:?}"); - } - } -} - -impl IntoPy for Op { - fn into_py(self, py: Python<'_>) -> PyObject { - (&self).into_py(py) - } -} - -impl<'source> FromPyObject<'source> for Op { - fn extract(ob: &'source PyAny) -> PyResult { - let pyop: PyResult = ob.extract(); - - if let Ok(pyop) = pyop { - Ok(pyop.try_into().unwrap()) - } else { - let pycustom: PyCustom = ob.extract()?; - Ok(Op::Custom(Box::new(pycustom))) - } - } -} - -impl std::convert::From for PyErr { - fn from(s: CircuitError) -> Self { - pyo3::exceptions::PyRuntimeError::new_err(s.0) - } -} - -#[pymethods] -impl Circuit { - #[new] - pub fn py_new() -> Self { - Self::new() - } - - #[pyo3(name = "boundary")] - pub fn py_boundary(&self) -> (NodeIndex, NodeIndex) { - let [i, o] = self.boundary(); - (i, o) - } - - pub fn node_indices(&self) -> NodeIterator { - // TODO find a way to do this without the collect - // or just return the Vec - NodeIterator( - self.dag - .node_indices() - .collect::>() - .into_iter(), - ) - } - - pub fn _from_tket1(c: Py) -> Self { - let ser = SerialCircuit::_from_tket1(c); - ser.into() - } - - #[classmethod] - pub fn from_tket1(_cls: &PyType, c: Py) -> Self { - Self::_from_tket1(c) - } - - pub fn to_tket1(&self) -> PyResult> { - let reser: SerialCircuit = self.clone().into(); - reser.to_tket1() - } - - fn __richcmp__(&self, other: &Self, op: CompareOp) -> PyResult { - match op { - CompareOp::Eq => Ok(self == other), - CompareOp::Ne => Ok(self != other), - _ => Err(PyNotImplementedError::new_err("Unsupported comparison.")), - } - } - - pub fn defrag(&mut self) { - let c = self.clone().remove_invalid(); - - *self = c; - } - - pub fn append(&mut self, op: Op, args: Vec) -> NodeIndex { - self.append_op(op, &args).unwrap() - } -} - -#[pyclass] -pub struct NodeIterator(std::vec::IntoIter); -#[pymethods] -impl NodeIterator { - fn __iter__(slf: PyRef<'_, Self>) -> PyRef<'_, Self> { - slf - } - - fn __next__(mut slf: PyRefMut<'_, Self>) -> Option { - slf.0.next() - } -} - -#[pyclass(name = "Subgraph")] -#[derive(Clone)] -pub struct PySubgraph(BoundedSubgraph); - -#[pymethods] -impl PySubgraph { - #[new] - pub fn new( - subg_nodes: HashSet, - in_edges: Vec, - out_edges: Vec, - ) -> Self { - Self(BoundedSubgraph::new( - SubgraphRef::new(subg_nodes), - [in_edges, out_edges], - )) - } -} - -#[pymethods] -impl CircuitRewrite { - #[new] - pub fn py_new(subg: PySubgraph, replacement: Circuit, phase: Param) -> Self { - Self::new(subg.0, replacement.into(), phase) - } -} - -pub struct PyRewriteIter<'py> { - inner: Py, - py: Python<'py>, -} - -impl<'py> PyRewriteIter<'py> { - pub fn new(inner: Py, py: Python<'py>) -> Self { - Self { inner, py } - } -} - -impl<'py> Iterator for PyRewriteIter<'py> { - type Item = CircuitRewrite; - - fn next(&mut self) -> Option { - match self.inner.call_method0(self.py, "__next__") { - Ok(cr) => Some( - cr.extract(self.py) - .expect("Iterator didn't return a CircuitRewrite."), - ), - Err(err) => { - if err.is_instance_of::(self.py) { - None - } else { - panic!("{}", err); - } - } - } - } -} - -#[pymethods] -impl Rational { - #[new] - pub fn new(num: i64, denom: i64) -> Self { - Self(num_rational::Rational64::new(num, denom)) - } - - fn num_denom(&self) -> (i64, i64) { - (*self.0.numer(), *self.0.denom()) - } - - fn __richcmp__(&self, other: &Self, op: CompareOp) -> PyResult { - match op { - CompareOp::Lt => Ok(self.0 < other.0), - CompareOp::Le => Ok(self.0 <= other.0), - CompareOp::Eq => Ok(self.0 == other.0), - CompareOp::Ne => Ok(self.0 != other.0), - CompareOp::Gt => Ok(self.0 > other.0), - CompareOp::Ge => Ok(self.0 >= other.0), - } - } - - fn __add__(&self, other: &Self) -> Self { - Self(self.0 + other.0) - } - - fn __sub__(&self, other: &Self) -> Self { - Self(self.0 - other.0) - } - - fn __mul__(&self, other: &Self) -> Self { - Self(self.0 * other.0) - } - - fn __truediv__(&self, other: &Self) -> PyResult { - match self.0.checked_div(&other.0) { - Some(i) => Ok(Self(i)), - None => Err(PyZeroDivisionError::new_err("division by zero")), - } - } - - fn __floordiv__(&self, other: &Self) -> PyResult { - match self.0.checked_div(&other.0) { - Some(i) => Ok(Self(i)), - None => Err(PyZeroDivisionError::new_err("division by zero")), - } - } -} - -#[pymethods] -impl Quat { - #[new] - pub fn new(vec: [f64; 4]) -> Self { - let [w, x, y, z] = vec; - Self(cgmath::Quaternion::new(w, x, y, z)) - } - - fn components(&self) -> [f64; 4] { - let v = self.0.v; - [self.0.s, v[0], v[1], v[2]] - } - - fn __richcmp__(&self, other: &Self, op: CompareOp) -> PyResult { - match op { - CompareOp::Eq => Ok(self.0 == other.0), - CompareOp::Ne => Ok(self.0 != other.0), - _ => Err(PyNotImplementedError::new_err("Unsupported comparison.")), - } - } - - fn __add__(&self, other: &Self) -> Self { - Self(self.0 + other.0) - } - - fn __sub__(&self, other: &Self) -> Self { - Self(self.0 - other.0) - } - - fn __mul__(&self, other: &Self) -> Self { - Self(self.0 * other.0) - } - - fn __truediv__(&self, other: f64) -> PyResult { - Ok(Self(self.0 / other)) - } -} - -#[pyclass] -#[derive(Clone, Debug, PartialEq)] -pub struct Angle { - float: Option, - rational: Option, -} - -#[pymethods] -impl Angle { - #[classmethod] - fn float(_cls: &PyType, f: f64) -> Self { - Self { - float: Some(f), - rational: None, - } - } - - #[classmethod] - fn rational(_cls: &PyType, r: Rational) -> Self { - Self { - float: None, - rational: Some(r), - } - } - - fn __richcmp__(&self, other: &Self, op: CompareOp) -> PyResult { - match op { - CompareOp::Eq => Ok(self == other), - CompareOp::Ne => Ok(self != other), - _ => Err(PyNotImplementedError::new_err("Unsupported comparison.")), - } - } -} - -impl IntoPy for AngleValue { - fn into_py(self, py: Python<'_>) -> PyObject { - match self { - AngleValue::F64(f) => Angle { - float: Some(f), - rational: None, - }, - AngleValue::Rational(r) => Angle { - rational: Some(r), - float: None, - }, - } - .into_py(py) - } -} - -impl<'source> FromPyObject<'source> for AngleValue { - fn extract(ob: &'source PyAny) -> PyResult { - let angle: Angle = ob.extract()?; - match (angle.float, angle.rational) { - (None, None) => Err(pyo3::exceptions::PyValueError::new_err( - "Empty angle invalid.", - )), - (_, Some(r)) => Ok(AngleValue::Rational(r)), - (Some(f), _) => Ok(AngleValue::F64(f)), - } - } -} - -impl IntoPy for &ConstValue { - fn into_py(self, py: Python<'_>) -> PyObject { - match self { - ConstValue::Bool(x) => x.into_py(py), - ConstValue::I32(x) => x.into_py(py), - ConstValue::F64(x) => x.into_py(py), - ConstValue::Angle(x) => x.into_py(py), - ConstValue::Quat64(x) => x.into_py(py), - } - } -} - -#[pymethods] -impl Signature { - #[new] - pub fn py_new(linear: Vec, nonlinear: [Vec; 2]) -> Self { - Self { linear, nonlinear } - } -} - -#[pyclass(name = "CustomOp")] -#[derive(Debug, Clone)] -pub struct PyCustom(pub PyObject); - -impl CustomOp for PyCustom { - fn signature(&self) -> Option { - Python::with_gil(|py| { - Some( - self.0 - .as_ref(py) - .call_method0("signature") - .unwrap() - .extract() - .unwrap(), - ) - }) - } - - fn to_circuit(&self) -> Result { - Python::with_gil(|py| { - self.0 - .as_ref(py) - .call_method0("to_circuit") - .unwrap() - .extract() - .map_err(|_| ToCircuitFail) - }) - } -} - -#[pymethods] -impl PyCustom { - #[new] - fn new(c: Py) -> Self { - Self(c) - } -} - -impl PartialEq for PyCustom { - fn eq(&self, other: &Self) -> bool { - Python::with_gil(|py| { - self.0 - .call_method1(py, "__eq__", (&other.0,)) - .unwrap() - .extract(py) - .unwrap() - }) - } -} - -// Simple demo of dynamic downcasting to count pycustom ops -#[pyfunction] -pub fn count_pycustom(c: &Circuit) -> usize { - c.dag_ref() - .node_weights() - .filter(|o| { - if let Op::Custom(x) = &o.op { - return x.downcast_ref::().is_some(); - } - - false - }) - .count() -} diff --git a/src/circuit/unitarybox.rs b/src/circuit/unitarybox.rs deleted file mode 100644 index 8e63c836..00000000 --- a/src/circuit/unitarybox.rs +++ /dev/null @@ -1,71 +0,0 @@ -use super::operation::CustomOp; -use super::operation::Signature; -use super::operation::WireType; -use num_complex::Complex; -use tket_json_rs::circuit_json; -use tket_rs::make_box; - -#[derive(Debug, Clone, PartialEq)] -pub struct SU2(pub [[Complex; 2]; 2]); - -impl CustomOp for SU2 { - fn signature(&self) -> Option { - Some(Signature::new_linear(vec![WireType::Qubit])) - } - - fn to_circuit(&self) -> Result { - let mut arr: [[[f64; 2]; 2]; 2] = Default::default(); - for (i, row) in self.0.into_iter().enumerate() { - for (j, c) in row.into_iter().enumerate() { - arr[i][j] = [c.re, c.im]; - } - } - - let box2 = make_box(arr); - let cj = box2.circ_json(); - - let ser: circuit_json::SerialCircuit = serde_json::from_str(&cj).unwrap(); - - Ok(ser.into()) - } -} - -#[cfg(test)] -mod tests { - use super::*; - use crate::{ - circuit::{ - circuit::{Circuit, UnitID}, - operation::{AngleValue, ConstValue, Op}, - }, - passes::decompose_custom_pass, - validate::check_soundness, - }; - #[test] - fn test_decompose_unitary() { - let qubits = vec![UnitID::Qubit { - reg_name: "q".into(), - index: vec![0], - }]; - let mut circ = Circuit::with_uids(qubits); - let x_su2 = SU2([ - [Complex::new(0.0, 0.0), Complex::new(1.0, 0.0)], - [Complex::new(1.0, 0.0), Complex::new(0.0, 0.0)], - ]); - circ.append_op(Op::Custom(Box::new(x_su2)), &[0]).unwrap(); - check_soundness(&circ).unwrap(); - - let (circ, success) = decompose_custom_pass(circ); - println!("{}", circ.dot_string()); - assert!(success); - check_soundness(&circ).unwrap(); - - assert_eq!(circ.dag.node_count(), 6); - for op in circ.dag.node_weights() { - assert!(matches!( - op.op, - Op::Input | Op::Output | Op::Const(ConstValue::Angle(AngleValue::F64(_))) | Op::TK1 - )) - } - } -} diff --git a/src/passes/classical.rs b/src/passes/_classical.rs similarity index 100% rename from src/passes/classical.rs rename to src/passes/_classical.rs diff --git a/src/passes/multi_search.rs b/src/passes/_multi_search.rs similarity index 100% rename from src/passes/multi_search.rs rename to src/passes/_multi_search.rs diff --git a/src/passes/redundancy.rs b/src/passes/_redundancy.rs similarity index 100% rename from src/passes/redundancy.rs rename to src/passes/_redundancy.rs diff --git a/src/passes/squash.rs b/src/passes/_squash.rs similarity index 100% rename from src/passes/squash.rs rename to src/passes/_squash.rs diff --git a/src/passes/taso/tests.rs b/src/passes/taso/_tests.rs similarity index 100% rename from src/passes/taso/tests.rs rename to src/passes/taso/_tests.rs From b9a3b660ca0ee24cb58d9ed1ad5fe012fb5e0666 Mon Sep 17 00:00:00 2001 From: Luca Mondada <72734770+lmondada@users.noreply.github.com> Date: Wed, 13 Sep 2023 18:18:21 +0200 Subject: [PATCH 07/14] fix: Disallow empty qubits in CircuitPattern (#103) --- src/portmatching/pattern.rs | 23 +++++++++++++++++++++-- src/rewrite/ecc_rewriter.rs | 1 + 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/src/portmatching/pattern.rs b/src/portmatching/pattern.rs index 0d123f10..14a825f1 100644 --- a/src/portmatching/pattern.rs +++ b/src/portmatching/pattern.rs @@ -59,7 +59,7 @@ impl CircuitPattern { let out_ports = circuit.get_optype(out).signature().input_ports(); let inputs = inp_ports .map(|p| circuit.linked_ports(inp, p).collect()) - .collect(); + .collect_vec(); let outputs = out_ports .map(|p| { circuit @@ -68,7 +68,13 @@ impl CircuitPattern { .ok() .expect("invalid circuit") }) - .collect(); + .collect_vec(); + if inputs.iter().flatten().any(|&(n, _)| n == out) { + // An input is connected to an output => empty qubit, not allowed. + return Err(InvalidPattern::NotConnected); + } + // This is a consequence of the test above. + debug_assert!(outputs.iter().all(|(n, _)| *n != inp)); Ok(Self { pattern, inputs, @@ -165,4 +171,17 @@ mod tests { InvalidPattern::NotConnected ); } + + #[test] + fn pattern_with_empty_qubit() { + let circ = build_simple_circuit(2, |circ| { + circ.append(T2Op::X, [0])?; + Ok(()) + }) + .unwrap(); + assert_eq!( + CircuitPattern::try_from_circuit(&circ).unwrap_err(), + InvalidPattern::NotConnected + ); + } } diff --git a/src/rewrite/ecc_rewriter.rs b/src/rewrite/ecc_rewriter.rs index 8a7fcebb..dbfbae9b 100644 --- a/src/rewrite/ecc_rewriter.rs +++ b/src/rewrite/ecc_rewriter.rs @@ -162,6 +162,7 @@ mod tests { build_simple_circuit(2, |circ| { circ.append(T2Op::H, [0]).unwrap(); circ.append(T2Op::H, [0]).unwrap(); + circ.append(T2Op::CX, [0, 1]).unwrap(); Ok(()) }) .unwrap() From b2882d6b6d9e40f6193f929653a779938ea4adce Mon Sep 17 00:00:00 2001 From: Luca Mondada <72734770+lmondada@users.noreply.github.com> Date: Thu, 14 Sep 2023 17:05:57 +0200 Subject: [PATCH 08/14] fix: Store hash when hashing Const (#107) fixes #106 --- src/circuit/hash.rs | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/src/circuit/hash.rs b/src/circuit/hash.rs index e9a0109d..aaea3b9b 100644 --- a/src/circuit/hash.rs +++ b/src/circuit/hash.rs @@ -80,7 +80,8 @@ impl HashState { fn set_node(&mut self, circ: &impl HugrView, node: Node, hash: u64) { let optype = circ.get_optype(node); let signature = optype.signature(); - let mut any_nonlinear = false; + // Defaults to false in most cases, except for OpType::Const. + let mut any_nonlinear = optype.tag() <= OpTag::Const; for (port_type, port) in signature .output_types() .iter() @@ -148,8 +149,10 @@ fn hash_node(circ: &impl HugrView, node: Node, state: &mut HashState) -> u64 { #[cfg(test)] mod test { use hugr::hugr::views::{HierarchyView, SiblingGraph}; - use hugr::HugrView; + use hugr::{Hugr, HugrView}; + use tket_json_rs::circuit_json; + use crate::json::TKETDecode; use crate::utils::build_simple_circuit; use crate::T2Op; @@ -193,4 +196,26 @@ mod test { assert_ne!(hash1, hash3); } + + #[test] + fn hash_constants() { + let c_str = r#"{"bits": [], "commands": [{"args": [["q", [0]]], "op": {"params": ["0.5"], "type": "Rz"}}], "created_qubits": [], "discarded_qubits": [], "implicit_permutation": [[["q", [0]], ["q", [0]]]], "phase": "0.0", "qubits": [["q", [0]]]}"#; + let ser: circuit_json::SerialCircuit = serde_json::from_str(c_str).unwrap(); + let circ: Hugr = ser.decode().unwrap(); + circ.circuit_hash(); + } + + #[test] + fn hash_constants_neq() { + let c_str1 = r#"{"bits": [], "commands": [{"args": [["q", [0]]], "op": {"params": ["0.5"], "type": "Rz"}}], "created_qubits": [], "discarded_qubits": [], "implicit_permutation": [[["q", [0]], ["q", [0]]]], "phase": "0.0", "qubits": [["q", [0]]]}"#; + let c_str2 = r#"{"bits": [], "commands": [{"args": [["q", [0]]], "op": {"params": ["1.0"], "type": "Rz"}}], "created_qubits": [], "discarded_qubits": [], "implicit_permutation": [[["q", [0]], ["q", [0]]]], "phase": "0.0", "qubits": [["q", [0]]]}"#; + + let mut all_hashes = Vec::with_capacity(2); + for c_str in [c_str1, c_str2] { + let ser: circuit_json::SerialCircuit = serde_json::from_str(c_str).unwrap(); + let circ: Hugr = ser.decode().unwrap(); + all_hashes.push(circ.circuit_hash()); + } + assert_ne!(all_hashes[0], all_hashes[1]); + } } From e40d70d8b6035af1f943d27cb1489f6e8910abbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Thu, 14 Sep 2023 17:23:46 +0200 Subject: [PATCH 09/14] feat: Support "add" operations in the ecc loader (#109) Required for some #104 ecc sets. Note that the published `tket-json-rs` dropped the `tket2` feature. But it should be fine once https://github.com/CQCL/tket-json-rs/pull/13 is merged and published. --- src/json/op.rs | 2 ++ src/ops.rs | 5 +++++ src/passes/taso/qtz_circuit.rs | 1 + 3 files changed, 8 insertions(+) diff --git a/src/json/op.rs b/src/json/op.rs index 6eea35e4..e585e41d 100644 --- a/src/json/op.rs +++ b/src/json/op.rs @@ -215,6 +215,8 @@ impl TryFrom<&OpType> for JsonOp { T2Op::Measure => JsonOpType::Measure, T2Op::RzF64 => JsonOpType::Rz, T2Op::RxF64 => JsonOpType::Rx, + // TODO: Use a TK2 opaque op once we update the tket-json-rs dependency. + T2Op::AngleAdd => JsonOpType::AngleAdd, T2Op::TK1 => JsonOpType::TK1, T2Op::PhasedX => JsonOpType::PhasedX, T2Op::ZZMax => JsonOpType::ZZMax, diff --git a/src/ops.rs b/src/ops.rs index 8a383e62..a57274b0 100644 --- a/src/ops.rs +++ b/src/ops.rs @@ -59,6 +59,7 @@ pub enum T2Op { RxF64, PhasedX, ZZPhase, + AngleAdd, TK1, } #[derive(Clone, Copy, Debug, Serialize, Deserialize, EnumIter, Display, PartialEq, PartialOrd)] @@ -127,6 +128,10 @@ impl SimpleOpEnum for T2Op { Measure => FunctionType::new(one_qb_row, type_row![QB_T, BOOL_T]), RzF64 | RxF64 => FunctionType::new(type_row![QB_T, FLOAT64_TYPE], one_qb_row), PhasedX => FunctionType::new(type_row![QB_T, FLOAT64_TYPE, FLOAT64_TYPE], one_qb_row), + AngleAdd => FunctionType::new( + type_row![FLOAT64_TYPE, FLOAT64_TYPE], + type_row![FLOAT64_TYPE], + ), TK1 => FunctionType::new( type_row![QB_T, FLOAT64_TYPE, FLOAT64_TYPE, FLOAT64_TYPE], one_qb_row, diff --git a/src/passes/taso/qtz_circuit.rs b/src/passes/taso/qtz_circuit.rs index 339aae18..5c4d01b7 100644 --- a/src/passes/taso/qtz_circuit.rs +++ b/src/passes/taso/qtz_circuit.rs @@ -52,6 +52,7 @@ fn map_op(opstr: &str) -> Op { "tdg" => T2Op::Tdg, "sdg" => T2Op::Sdg, "rz" => T2Op::RzF64, + "add" => T2Op::AngleAdd, x => panic!("unknown op {x}"), } .into() From 6e62f32ebd06a087a1a20a557d83120f2f6e2bfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Thu, 14 Sep 2023 17:28:00 +0200 Subject: [PATCH 10/14] ci: run clippy on all the workspace (#110) --- .github/pre-commit | 2 +- .github/workflows/ci.yml | 2 +- compile-matcher/src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/pre-commit b/.github/pre-commit index 2a5b2592..cc161246 100755 --- a/.github/pre-commit +++ b/.github/pre-commit @@ -16,7 +16,7 @@ then exit 1 fi -if ! cargo clippy --all-targets --features="pyo3,portmatching" -- -D warnings +if ! cargo clippy --all-targets --features="pyo3,portmatching" --workspace -- -D warnings then echo "There are some clippy issues." exit 1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b7377f7..50e3ebf2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - name: Check formatting run: cargo fmt -- --check - name: Run clippy - run: cargo clippy --all-targets --features="$FEATURES" -- -D warnings + run: cargo clippy --all-targets --features="$FEATURES" --workspace -- -D warnings - name: Build docs run: cargo doc --no-deps --features="$FEATURES" env: diff --git a/compile-matcher/src/main.rs b/compile-matcher/src/main.rs index 5c0f59dc..c0601079 100644 --- a/compile-matcher/src/main.rs +++ b/compile-matcher/src/main.rs @@ -65,7 +65,7 @@ fn main() { let patterns = all_circs .iter() .filter_map(|circ| { - let circ: SiblingGraph<'_, DfgID> = SiblingGraph::new(&circ, circ.root()); + let circ: SiblingGraph<'_, DfgID> = SiblingGraph::new(circ, circ.root()); // Fail silently on empty or disconnected patterns CircuitPattern::try_from_circuit(&circ).ok() }) From b8a34b7b6ac3e55dc98cce50923ba0be69428362 Mon Sep 17 00:00:00 2001 From: Luca Mondada <72734770+lmondada@users.noreply.github.com> Date: Fri, 15 Sep 2023 14:04:14 +0200 Subject: [PATCH 11/14] feat: Add Taso optimiser (#104) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From the `taso-optimiser` folder, you should be able to run ``` cargo run -- -i ../test_files/barenco_tof_5.json -e ../test_files/T_Tdg_H_X_CX_complete_ECC_set.json ``` and see the Barenco benchmark circuit getting optimised. --------- Co-authored-by: Agustín Borgna <121866228+aborgna-q@users.noreply.github.com> --- Cargo.toml | 12 +- compile-matcher/src/main.rs | 2 +- src/{passes.rs => _passes.rs} | 1 + src/{passes => _passes}/_classical.rs | 0 src/{passes => _passes}/_multi_search.rs | 0 src/{passes => _passes}/_redundancy.rs | 0 src/{passes => _passes}/_squash.rs | 0 src/json.rs | 46 +- src/json/op.rs | 12 +- src/lib.rs | 2 +- src/optimiser.rs | 6 + src/optimiser/taso.rs | 488 + src/{passes => optimiser}/taso/_tests.rs | 0 src/optimiser/taso/eq_circ_class.rs | 88 + src/optimiser/taso/hugr_pq.rs | 92 + src/{passes => optimiser}/taso/qtz_circuit.rs | 0 src/passes/taso.rs | 422 - src/rewrite/ecc_rewriter.rs | 3 +- src/rewrite/strategy.rs | 1 + taso-optimiser/Cargo.toml | 14 + taso-optimiser/src/main.rs | 95 + test_files/T_Tdg_H_X_CX_complete_ECC_set.json | 9649 +++++++++++++++++ test_files/barenco_tof_5.json | 1 + test_files/barenco_tof_5_rm.json | 1 + 24 files changed, 10494 insertions(+), 441 deletions(-) rename src/{passes.rs => _passes.rs} (99%) rename src/{passes => _passes}/_classical.rs (100%) rename src/{passes => _passes}/_multi_search.rs (100%) rename src/{passes => _passes}/_redundancy.rs (100%) rename src/{passes => _passes}/_squash.rs (100%) create mode 100644 src/optimiser.rs create mode 100644 src/optimiser/taso.rs rename src/{passes => optimiser}/taso/_tests.rs (100%) create mode 100644 src/optimiser/taso/eq_circ_class.rs create mode 100644 src/optimiser/taso/hugr_pq.rs rename src/{passes => optimiser}/taso/qtz_circuit.rs (100%) delete mode 100644 src/passes/taso.rs create mode 100644 taso-optimiser/Cargo.toml create mode 100644 taso-optimiser/src/main.rs create mode 100644 test_files/T_Tdg_H_X_CX_complete_ECC_set.json create mode 100644 test_files/barenco_tof_5.json create mode 100644 test_files/barenco_tof_5_rm.json diff --git a/Cargo.toml b/Cargo.toml index f7c5045f..81ba552c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,9 +13,7 @@ lazy_static = "1.4.0" cgmath = "0.18.0" num-rational = "0.4" num-complex = { version = "0.4", optional = true } -tket-json-rs = { git = "https://github.com/CQCL/tket-json-rs", rev = "619db15d3", features = [ - "tket2ops", -] } +tket-json-rs = { workspace = true } rayon = "1.5" tket-rs = { optional = true, git = "https://github.com/CQCL-DEV/tket-rs", rev = "bd7e8e04" } thiserror = "1.0.28" @@ -41,7 +39,10 @@ strum = "0.25.0" fxhash = "0.2.1" rmp-serde = { version = "1.1.2", optional = true } delegate = "0.10.0" +csv = { version = "1.2.2" } +chrono = { version ="0.4.30" } bytemuck = "1.14.0" +stringreader = "0.1.1" [features] pyo3 = [ @@ -66,7 +67,7 @@ harness = false [workspace] -members = ["pyrs", "compile-matcher"] +members = ["pyrs", "compile-matcher", "taso-optimiser"] [workspace.dependencies] @@ -74,3 +75,6 @@ quantinuum-hugr = { git = "https://github.com/CQCL-DEV/hugr", rev = "bc9692b" } portgraph = { version = "0.9", features = ["serde"] } pyo3 = { version = "0.19" } itertools = { version = "0.11.0" } +tket-json-rs = { git = "https://github.com/CQCL/tket-json-rs", rev = "619db15d3", features = [ + "tket2ops", +] } diff --git a/compile-matcher/src/main.rs b/compile-matcher/src/main.rs index c0601079..ed49a0d8 100644 --- a/compile-matcher/src/main.rs +++ b/compile-matcher/src/main.rs @@ -9,7 +9,7 @@ use itertools::Itertools; use tket2::json::load_tk1_json_file; // Import the PatternMatcher struct and its methods -use tket2::passes::taso::load_eccs_json_file; +use tket2::optimiser::taso::load_eccs_json_file; use tket2::portmatching::{CircuitPattern, PatternMatcher}; /// Program to precompile patterns from files into a PatternMatcher stored as binary file. diff --git a/src/passes.rs b/src/_passes.rs similarity index 99% rename from src/passes.rs rename to src/_passes.rs index 723ed4e7..a1815187 100644 --- a/src/passes.rs +++ b/src/_passes.rs @@ -4,6 +4,7 @@ // pub mod redundancy; // pub mod pattern; // pub mod squash; +#[cfg(feature = "portmatching")] pub mod taso; // use rayon::prelude::*; diff --git a/src/passes/_classical.rs b/src/_passes/_classical.rs similarity index 100% rename from src/passes/_classical.rs rename to src/_passes/_classical.rs diff --git a/src/passes/_multi_search.rs b/src/_passes/_multi_search.rs similarity index 100% rename from src/passes/_multi_search.rs rename to src/_passes/_multi_search.rs diff --git a/src/passes/_redundancy.rs b/src/_passes/_redundancy.rs similarity index 100% rename from src/passes/_redundancy.rs rename to src/_passes/_redundancy.rs diff --git a/src/passes/_squash.rs b/src/_passes/_squash.rs similarity index 100% rename from src/passes/_squash.rs rename to src/_passes/_squash.rs diff --git a/src/json.rs b/src/json.rs index ff9ebc85..d92c0892 100644 --- a/src/json.rs +++ b/src/json.rs @@ -15,6 +15,7 @@ use hugr::std_extensions::arithmetic::float_types::ConstF64; use hugr::values::Value; use hugr::Hugr; +use stringreader::StringReader; use thiserror::Error; use tket_json_rs::circuit_json::SerialCircuit; use tket_json_rs::optype::OpType as JsonOpType; @@ -85,22 +86,49 @@ pub enum OpConvertError { } /// Load a TKET1 circuit from a JSON file. -pub fn load_tk1_json_file(path: impl AsRef) -> Result { +pub fn load_tk1_json_file(path: impl AsRef) -> Result { let file = fs::File::open(path)?; let reader = io::BufReader::new(file); - let ser: SerialCircuit = serde_json::from_reader(reader)?; + load_tk1_json_reader(reader) +} + +/// Load a TKET1 circuit from a JSON reader. +pub fn load_tk1_json_reader(json: impl io::Read) -> Result { + let ser: SerialCircuit = serde_json::from_reader(json)?; Ok(ser.decode()?) } /// Load a TKET1 circuit from a JSON string. -pub fn load_tk1_json_str(json: &str) -> Result { - let ser: SerialCircuit = serde_json::from_str(json)?; - Ok(ser.decode()?) +pub fn load_tk1_json_str(json: &str) -> Result { + let reader = StringReader::new(json); + load_tk1_json_reader(reader) +} + +/// Save a circuit to file in TK1 JSON format. +pub fn save_tk1_json_file(path: impl AsRef, circ: &Hugr) -> Result<(), TK1ConvertError> { + let file = fs::File::create(path)?; + let writer = io::BufWriter::new(file); + save_tk1_json_writer(circ, writer) +} + +/// Save a circuit in TK1 JSON format to a writer. +pub fn save_tk1_json_writer(circ: &Hugr, w: impl io::Write) -> Result<(), TK1ConvertError> { + let serial_circ = SerialCircuit::encode(circ)?; + serde_json::to_writer(w, &serial_circ)?; + Ok(()) +} + +/// Save a circuit in TK1 JSON format to a String. +pub fn save_tk1_json_str(circ: &Hugr) -> Result { + let mut buf = io::BufWriter::new(Vec::new()); + save_tk1_json_writer(circ, &mut buf)?; + let bytes = buf.into_inner().unwrap(); + String::from_utf8(bytes).map_err(|_| TK1ConvertError::InvalidJson) } /// Error type for conversion between `Op` and `OpType`. #[derive(Debug, Error)] -pub enum TK1LoadError { +pub enum TK1ConvertError { /// The serialized operation is not supported. #[error("unsupported serialized operation: {0:?}")] UnsupportedSerializedOp(JsonOpType), @@ -118,19 +146,19 @@ pub enum TK1LoadError { FileLoadError, } -impl From for TK1LoadError { +impl From for TK1ConvertError { fn from(_: serde_json::Error) -> Self { Self::InvalidJson } } -impl From for TK1LoadError { +impl From for TK1ConvertError { fn from(_: io::Error) -> Self { Self::FileLoadError } } -impl From for TK1LoadError { +impl From for TK1ConvertError { fn from(value: OpConvertError) -> Self { match value { OpConvertError::UnsupportedSerializedOp(op) => Self::UnsupportedSerializedOp(op), diff --git a/src/json/op.rs b/src/json/op.rs index e585e41d..ff1d06c3 100644 --- a/src/json/op.rs +++ b/src/json/op.rs @@ -210,8 +210,16 @@ impl TryFrom<&OpType> for JsonOp { let json_optype = if let Ok(t2op) = leaf.clone().try_into() { match t2op { - T2Op::CX => JsonOpType::CX, T2Op::H => JsonOpType::H, + T2Op::CX => JsonOpType::CX, + T2Op::T => JsonOpType::T, + T2Op::S => JsonOpType::S, + T2Op::X => JsonOpType::X, + T2Op::Y => JsonOpType::Y, + T2Op::Z => JsonOpType::Z, + T2Op::Tdg => JsonOpType::Tdg, + T2Op::Sdg => JsonOpType::Sdg, + T2Op::ZZMax => JsonOpType::ZZMax, T2Op::Measure => JsonOpType::Measure, T2Op::RzF64 => JsonOpType::Rz, T2Op::RxF64 => JsonOpType::Rx, @@ -219,9 +227,7 @@ impl TryFrom<&OpType> for JsonOp { T2Op::AngleAdd => JsonOpType::AngleAdd, T2Op::TK1 => JsonOpType::TK1, T2Op::PhasedX => JsonOpType::PhasedX, - T2Op::ZZMax => JsonOpType::ZZMax, T2Op::ZZPhase => JsonOpType::ZZPhase, - _ => return Err(err()), } } else if let LeafOp::CustomOp(b) = leaf { let ext = (*b).as_ref(); diff --git a/src/lib.rs b/src/lib.rs index 6c35b015..0a4eee4d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ pub mod circuit; pub mod extension; pub mod json; pub(crate) mod ops; -pub mod passes; +pub mod optimiser; pub mod rewrite; pub use ops::{symbolic_constant_op, Pauli, T2Op}; diff --git a/src/optimiser.rs b/src/optimiser.rs new file mode 100644 index 00000000..711caab6 --- /dev/null +++ b/src/optimiser.rs @@ -0,0 +1,6 @@ +//! Optimisers for circuit rewriting. +//! +//! Currently, the only optimiser is TASO + +pub mod taso; +pub use taso::TasoOptimiser; diff --git a/src/optimiser/taso.rs b/src/optimiser/taso.rs new file mode 100644 index 00000000..b1b07031 --- /dev/null +++ b/src/optimiser/taso.rs @@ -0,0 +1,488 @@ +//! TASO circuit optimiser. +//! +//! This module implements the TASO circuit optimiser. It relies on a rewriter +//! and a RewriteStrategy instance to repeatedly rewrite a circuit and optimising +//! it according to some cost metric (typically gate count). +//! +//! The optimiser is implemented as a priority queue of circuits to be processed. +//! On top of the queue are the circuits with the lowest cost. They are popped +//! from the queue and replaced by the new circuits obtained from the rewriter +//! and the rewrite strategy. A hash of every circuit computed is stored to +//! detect and ignore duplicates. The priority queue is truncated whenever +//! it gets too large. + +mod eq_circ_class; +mod hugr_pq; +mod qtz_circuit; + +pub use eq_circ_class::{load_eccs_json_file, EqCircClass}; + +use std::sync::mpsc::{self, Receiver, SyncSender}; +use std::thread::{self, JoinHandle}; +use std::time::Instant; +use std::{fs, io}; + +use fxhash::FxHashSet; +use hugr::{Hugr, HugrView}; +use itertools::{izip, Itertools}; + +use crate::circuit::CircuitHash; +use crate::json::save_tk1_json_writer; +use crate::rewrite::strategy::RewriteStrategy; +use crate::rewrite::Rewriter; +use hugr_pq::{Entry, HugrPQ}; + +/// Logging configuration for the TASO optimiser. +#[derive(Default)] +pub struct LogConfig<'w> { + final_circ_json: Option>, + circ_candidates_csv: Option>, + progress_log: Option>, +} + +impl<'w> LogConfig<'w> { + /// Create a new logging configuration. + /// + /// Three writer objects must be provided: + /// - best_circ_json: for the final optimised circuit, in TK1 JSON format, + /// - circ_candidates_csv: for a log of the successive best candidate circuits, + /// - progress_log: for a log of the progress of the optimisation. + pub fn new( + best_circ_json: impl io::Write + 'w, + circ_candidates_csv: impl io::Write + 'w, + progress_log: impl io::Write + 'w, + ) -> Self { + Self { + final_circ_json: Some(Box::new(best_circ_json)), + circ_candidates_csv: Some(Box::new(circ_candidates_csv)), + progress_log: Some(Box::new(progress_log)), + } + } +} + +/// The TASO optimiser. +/// +/// Adapted from [Quartz][], and originally [TASO][]. +/// +/// Using a rewriter and a rewrite strategy, the optimiser +/// will repeatedly rewrite the circuit, optimising the circuit according to +/// the cost function provided. +/// +/// Optimisation is done by maintaining a priority queue of circuits and +/// always processing the circuit with the lowest cost first. Rewrites are +/// computed for that circuit and all new circuit obtained are added to the queue. +/// +/// This optimiser is single-threaded. +/// +/// [Quartz]: https://arxiv.org/abs/2204.09033 +/// [TASO]: https://dl.acm.org/doi/10.1145/3341301.3359630 +pub struct TasoOptimiser { + rewriter: R, + strategy: S, + cost: C, +} + +impl TasoOptimiser { + /// Create a new TASO optimiser. + pub fn new(rewriter: R, strategy: S, cost: C) -> Self { + Self { + rewriter, + strategy, + cost, + } + } + + /// Run the TASO optimiser on a circuit. + /// + /// A timeout (in seconds) can be provided. + pub fn optimise(&self, circ: &Hugr, timeout: Option) -> Hugr + where + R: Rewriter, + S: RewriteStrategy, + C: Fn(&Hugr) -> usize, + { + taso( + circ, + &self.rewriter, + &self.strategy, + &self.cost, + Default::default(), + timeout, + ) + } + + /// Run the TASO optimiser on a circuit with logging activated. + /// + /// A timeout (in seconds) can be provided. + pub fn optimise_with_log( + &self, + circ: &Hugr, + log_config: LogConfig, + timeout: Option, + ) -> Hugr + where + R: Rewriter, + S: RewriteStrategy, + C: Fn(&Hugr) -> usize, + { + taso( + circ, + &self.rewriter, + &self.strategy, + &self.cost, + log_config, + timeout, + ) + } + + /// Run the TASO optimiser on a circuit with default logging. + /// + /// The following files will be created: + /// - `final_circ.json`: the final optimised circuit, in TK1 JSON format, + /// - `best_circs.csv`: a log of the successive best candidate circuits, + /// - `taso-optimisation.log`: a log of the progress of the optimisation. + /// + /// If the creation of any of these files fails, an error is returned. + /// + /// A timeout (in seconds) can be provided. + pub fn optimise_with_default_log(&self, circ: &Hugr, timeout: Option) -> io::Result + where + R: Rewriter, + S: RewriteStrategy, + C: Fn(&Hugr) -> usize, + { + let final_circ_json = fs::File::create("final_circ.json")?; + let circ_candidates_csv = fs::File::create("best_circs.csv")?; + let progress_log = fs::File::create("taso-optimisation.log")?; + let log_config = LogConfig::new(final_circ_json, circ_candidates_csv, progress_log); + Ok(self.optimise_with_log(circ, log_config, timeout)) + } +} + +#[cfg(feature = "portmatching")] +mod taso_default { + use crate::circuit::Circuit; + use crate::rewrite::strategy::ExhaustiveRewriteStrategy; + use crate::rewrite::ECCRewriter; + + use super::*; + + impl TasoOptimiser usize> { + /// A sane default optimiser using the given ECC sets. + pub fn default_with_eccs_json_file(eccs_path: impl AsRef) -> Self { + let rewriter = ECCRewriter::from_eccs_json_file(eccs_path); + let strategy = ExhaustiveRewriteStrategy::default(); + Self::new(rewriter, strategy, |c| c.num_gates()) + } + } +} + +fn taso( + circ: &Hugr, + rewriter: &impl Rewriter, + strategy: &impl RewriteStrategy, + cost: impl Fn(&Hugr) -> usize, + mut log_config: LogConfig, + timeout: Option, +) -> Hugr { + let start_time = Instant::now(); + + let mut log_candidates = log_config.circ_candidates_csv.map(csv::Writer::from_writer); + + let mut best_circ = circ.clone(); + let mut best_circ_cost = cost(circ); + log_best(best_circ_cost, log_candidates.as_mut()).unwrap(); + + // Hash of seen circuits. Dot not store circuits as this map gets huge + let mut seen_hashes: FxHashSet<_> = FromIterator::from_iter([(circ.circuit_hash())]); + + // The priority queue of circuits to be processed (this should not get big) + let mut pq = HugrPQ::new(&cost); + + pq.push(circ.clone()); + + let mut circ_cnt = 0; + while let Some(Entry { circ, cost, .. }) = pq.pop() { + if cost < best_circ_cost { + best_circ = circ.clone(); + best_circ_cost = cost; + log_best(best_circ_cost, log_candidates.as_mut()).unwrap(); + } + + let rewrites = rewriter.get_rewrites(&circ); + for new_circ in strategy.apply_rewrites(rewrites, &circ) { + let new_circ_hash = new_circ.circuit_hash(); + circ_cnt += 1; + if circ_cnt % 1000 == 0 { + log_progress( + log_config.progress_log.as_mut(), + circ_cnt, + &pq, + &seen_hashes, + ) + .expect("Failed to write to progress log"); + } + if seen_hashes.contains(&new_circ_hash) { + continue; + } + pq.push_with_hash_unchecked(new_circ, new_circ_hash); + seen_hashes.insert(new_circ_hash); + } + + if pq.len() >= 10000 { + // Haircut to keep the queue size manageable + pq.truncate(5000); + } + + if let Some(timeout) = timeout { + if start_time.elapsed().as_secs() > timeout { + println!("Timeout"); + break; + } + } + } + + log_final( + &best_circ, + log_config.progress_log.as_mut(), + log_config.final_circ_json.as_mut(), + &cost, + ) + .expect("Failed to write to progress log and/or final circuit JSON"); + + best_circ +} + +/// Run the TASO optimiser on a circuit. +/// +/// The optimiser will repeatedly rewrite the circuit using the rewriter and +/// the rewrite strategy, optimising the circuit according to the cost function +/// provided. Optionally, a timeout (in seconds) can be provided. +/// +/// A log of the successive best candidate circuits can be found in the file +/// `best_circs.csv`. In addition, the final best circuit is retrievable in the +/// files `final_best_circ.gv` and `final_best_circ.json`. +/// +/// This is the multi-threaded version of the optimiser. See [`TasoOptimiser`] for the +/// single-threaded version. +// TODO Support MPSC and expose in API +#[allow(dead_code)] +fn taso_mpsc( + circ: Hugr, + rewriter: impl Rewriter + Send + Clone + 'static, + strategy: impl RewriteStrategy + Send + Clone + 'static, + cost: impl Fn(&Hugr) -> usize + Send + Sync, + log_config: LogConfig, + timeout: Option, + n_threads: usize, +) -> Hugr { + let start_time = Instant::now(); + + let mut log_candidates = log_config.circ_candidates_csv.map(csv::Writer::from_writer); + + println!("Spinning up {n_threads} threads"); + + // channel for sending circuits from threads back to main + let (t_main, r_main) = mpsc::sync_channel(n_threads * 100); + + let mut best_circ = circ.clone(); + let mut best_circ_cost = cost(&best_circ); + let circ_hash = circ.circuit_hash(); + log_best(best_circ_cost, log_candidates.as_mut()).unwrap(); + + // Hash of seen circuits. Dot not store circuits as this map gets huge + let mut seen_hashes: FxHashSet<_> = FromIterator::from_iter([(circ_hash)]); + + // The priority queue of circuits to be processed (this should not get big) + let mut pq = HugrPQ::new(&cost); + pq.push(circ); + + // each thread scans for rewrites using all the patterns and + // sends rewritten circuits back to main + let (joins, threads_tx, signal_new_data): (Vec<_>, Vec<_>, Vec<_>) = (0..n_threads) + .map(|_| spawn_pattern_matching_thread(t_main.clone(), rewriter.clone(), strategy.clone())) + .multiunzip(); + + let mut cycle_inds = (0..n_threads).cycle(); + let mut threads_empty = vec![true; n_threads]; + + let mut circ_cnt = 0; + loop { + // Fill each thread workqueue with data from pq + while let Some(Entry { + circ, + cost: &cost, + hash, + }) = pq.peek() + { + if cost < best_circ_cost { + best_circ = circ.clone(); + best_circ_cost = cost; + log_best(best_circ_cost, log_candidates.as_mut()).unwrap(); + // Now we only care about smaller circuits + seen_hashes.clear(); + seen_hashes.insert(hash); + } + // try to send to first available thread + // TODO: Consider using crossbeam-channel + if let Some(next_ind) = cycle_inds.by_ref().take(n_threads).find(|next_ind| { + let tx = &threads_tx[*next_ind]; + tx.try_send(Some(circ.clone())).is_ok() + }) { + pq.pop(); + // Unblock thread if waiting + let _ = signal_new_data[next_ind].try_recv(); + threads_empty[next_ind] = false; + } else { + // All send channels are full, continue + break; + } + } + + // Receive data from threads, add to pq + // We compute the hashes in the threads because it's expensive + while let Ok(received) = r_main.try_recv() { + let Some((circ_hash, circ)) = received else { + panic!("A thread panicked"); + }; + circ_cnt += 1; + if circ_cnt % 1000 == 0 { + println!("{circ_cnt} circuits..."); + println!("Queue size: {} circuits", pq.len()); + println!("Total seen: {} circuits", seen_hashes.len()); + } + if seen_hashes.contains(&circ_hash) { + continue; + } + pq.push_with_hash_unchecked(circ, circ_hash); + seen_hashes.insert(circ_hash); + } + + // Check if all threads are waiting for new data + for (is_waiting, is_empty) in signal_new_data.iter().zip(threads_empty.iter_mut()) { + if is_waiting.try_recv().is_ok() { + *is_empty = true; + } + } + // If everyone is waiting and we do not have new data, we are done + if pq.is_empty() && threads_empty.iter().all(|&x| x) { + break; + } + if let Some(timeout) = timeout { + if start_time.elapsed().as_secs() > timeout { + println!("Timeout"); + break; + } + } + if pq.len() >= 10000 { + // Haircut to keep the queue size manageable + pq.truncate(5000); + } + } + + println!("Tried {circ_cnt} circuits"); + println!("Joining"); + + for (join, tx, data_tx) in izip!(joins, threads_tx, signal_new_data) { + // tell all the threads we're done and join the threads + tx.send(None).unwrap(); + let _ = data_tx.try_recv(); + join.join().unwrap(); + } + + println!("END RESULT: {}", cost(&best_circ)); + fs::write("final_best_circ.gv", best_circ.dot_string()).unwrap(); + fs::write( + "final_best_circ.json", + serde_json::to_vec(&best_circ).unwrap(), + ) + .unwrap(); + best_circ +} + +fn spawn_pattern_matching_thread( + tx_main: SyncSender>, + rewriter: impl Rewriter + Send + 'static, + strategy: impl RewriteStrategy + Send + 'static, +) -> (JoinHandle<()>, SyncSender>, Receiver<()>) { + // channel for sending circuits to each thread + let (tx_thread, rx) = mpsc::sync_channel(1000); + // A flag to wait until new data + let (wait_new_data, signal_new_data) = mpsc::sync_channel(0); + + let jn = thread::spawn(move || { + loop { + if let Ok(received) = rx.try_recv() { + let Some(sent_hugr): Option = received else { + // Terminate thread + break; + }; + let rewrites = rewriter.get_rewrites(&sent_hugr); + for new_circ in strategy.apply_rewrites(rewrites, &sent_hugr) { + let new_circ_hash = new_circ.circuit_hash(); + tx_main.send(Some((new_circ_hash, new_circ))).unwrap(); + } + } else { + // We are out of work, wait for new data + wait_new_data.send(()).unwrap(); + } + } + }); + + (jn, tx_thread, signal_new_data) +} + +/// A helper struct for logging improvements in circuit size seen during the +/// TASO execution. +// +// TODO: Replace this fixed logging. Report back intermediate results. +#[derive(serde::Serialize, Debug)] +struct BestCircSer { + circ_len: usize, + time: String, +} + +impl BestCircSer { + fn new(circ_len: usize) -> Self { + let time = chrono::Local::now().to_rfc3339(); + Self { circ_len, time } + } +} + +fn log_best(cbest: usize, wtr: Option<&mut csv::Writer>) -> io::Result<()> { + let Some(wtr) = wtr else { + return Ok(()); + }; + println!("new best of size {}", cbest); + wtr.serialize(BestCircSer::new(cbest)).unwrap(); + wtr.flush() +} + +fn log_progress( + wr: Option<&mut W>, + circ_cnt: usize, + pq: &HugrPQ, + seen_hashes: &FxHashSet, +) -> io::Result<()> { + if let Some(wr) = wr { + writeln!(wr, "{circ_cnt} circuits...")?; + writeln!(wr, "Queue size: {} circuits", pq.len())?; + writeln!(wr, "Total seen: {} circuits", seen_hashes.len())?; + } + Ok(()) +} + +fn log_final( + best_circ: &Hugr, + log: Option<&mut W1>, + final_circ: Option<&mut W2>, + cost: impl Fn(&Hugr) -> usize, +) -> io::Result<()> { + if let Some(log) = log { + writeln!(log, "END RESULT: {}", cost(best_circ))?; + } + if let Some(circ_writer) = final_circ { + save_tk1_json_writer(best_circ, circ_writer).unwrap(); + } + Ok(()) +} diff --git a/src/passes/taso/_tests.rs b/src/optimiser/taso/_tests.rs similarity index 100% rename from src/passes/taso/_tests.rs rename to src/optimiser/taso/_tests.rs diff --git a/src/optimiser/taso/eq_circ_class.rs b/src/optimiser/taso/eq_circ_class.rs new file mode 100644 index 00000000..865df40f --- /dev/null +++ b/src/optimiser/taso/eq_circ_class.rs @@ -0,0 +1,88 @@ +use std::path::Path; + +use hugr::Hugr; +use itertools::Itertools; + +use crate::circuit::Circuit; + +use super::qtz_circuit::load_ecc_set; + +#[derive(Debug, Clone)] +pub enum EqCircClassError { + NoRepresentative, +} + +/// A set of circuits forming an Equivalence Circuit Class (ECC). +/// +/// The set contains a distinguished circuit called the representative circuit, +/// typically chosen to be the smallest circuit in the set. +#[derive(Clone, serde::Serialize, serde::Deserialize)] +pub struct EqCircClass { + rep_circ: Hugr, + /// Other equivalent circuits to the representative. + other_circs: Vec, +} + +impl EqCircClass { + /// Create a new equivalence class with a representative circuit. + pub fn new(rep_circ: Hugr, other_circs: Vec) -> Self { + Self { + rep_circ, + other_circs, + } + } + + /// The representative circuit of the equivalence class. + pub fn rep_circ(&self) -> &Hugr { + &self.rep_circ + } + + /// The other circuits in the equivalence class. + pub fn others(&self) -> &[Hugr] { + &self.other_circs + } + + /// All circuits in the equivalence class. + pub fn circuits(&self) -> impl Iterator { + std::iter::once(&self.rep_circ).chain(self.other_circs.iter()) + } + + /// Consume into circuits of the equivalence class. + pub fn into_circuits(self) -> impl Iterator { + std::iter::once(self.rep_circ).chain(self.other_circs) + } + + /// The number of circuits in the equivalence class. + /// + /// An ECC always has a representative circuit, so this method will always + /// return an integer strictly greater than 0. + pub fn n_circuits(&self) -> usize { + self.other_circs.len() + 1 + } + + /// Create an equivalence class from a set of circuits. + /// + /// The smallest circuit is chosen as the representative. + pub fn from_circuits(circs: impl Into>) -> Result { + let mut circs: Vec<_> = circs.into(); + if circs.is_empty() { + return Err(EqCircClassError::NoRepresentative); + }; + + // Find the index for the smallest circuit + let min_index = circs.iter().position_min_by_key(|c| c.num_gates()).unwrap(); + let representative = circs.swap_remove(min_index); + Ok(Self::new(representative, circs)) + } +} + +/// Load a set of equivalence classes from a JSON file. +pub fn load_eccs_json_file(path: impl AsRef) -> Vec { + let all_circs = load_ecc_set(path); + + all_circs + .into_values() + .map(EqCircClass::from_circuits) + .collect::, _>>() + .unwrap() +} diff --git a/src/optimiser/taso/hugr_pq.rs b/src/optimiser/taso/hugr_pq.rs new file mode 100644 index 00000000..26eea0eb --- /dev/null +++ b/src/optimiser/taso/hugr_pq.rs @@ -0,0 +1,92 @@ +use delegate::delegate; +use fxhash::FxHashMap; +use hugr::Hugr; +use priority_queue::DoublePriorityQueue; + +use crate::circuit::CircuitHash; + +/// A min-priority queue for Hugrs. +/// +/// The cost function provided will be used as the priority of the Hugrs. +/// Uses hashes internally to store the Hugrs. +#[derive(Debug, Clone, Default)] +pub(super) struct HugrPQ { + queue: DoublePriorityQueue, + hash_lookup: FxHashMap, + cost_fn: C, +} + +pub(super) struct Entry { + pub(super) circ: C, + pub(super) cost: P, + pub(super) hash: H, +} + +impl HugrPQ { + /// Create a new HugrPQ with a cost function. + pub(super) fn new(cost_fn: C) -> Self { + Self { + queue: DoublePriorityQueue::new(), + hash_lookup: Default::default(), + cost_fn, + } + } + + /// Reference to the minimal Hugr in the queue. + pub(super) fn peek(&self) -> Option> { + let (hash, cost) = self.queue.peek_min()?; + let circ = self.hash_lookup.get(hash)?; + Some(Entry { + circ, + cost, + hash: *hash, + }) + } + + /// Push a Hugr into the queue. + pub(super) fn push(&mut self, hugr: Hugr) + where + C: Fn(&Hugr) -> P, + { + let hash = hugr.circuit_hash(); + self.push_with_hash_unchecked(hugr, hash); + } + + /// Push a Hugr into the queue with a precomputed hash. + /// + /// This is useful to avoid recomputing the hash in [`HugrPQ::push`] when + /// it is already known. + /// + /// This does not check that the hash is valid. + pub(super) fn push_with_hash_unchecked(&mut self, hugr: Hugr, hash: u64) + where + C: Fn(&Hugr) -> P, + { + let cost = (self.cost_fn)(&hugr); + self.queue.push(hash, cost); + self.hash_lookup.insert(hash, hugr); + } + + /// Pop the minimal Hugr from the queue. + pub(super) fn pop(&mut self) -> Option> { + let (hash, cost) = self.queue.pop_min()?; + let circ = self.hash_lookup.remove(&hash)?; + Some(Entry { circ, cost, hash }) + } + + /// Discard the largest elements of the queue. + /// + /// Only keep up to `max_size` elements. + pub(super) fn truncate(&mut self, max_size: usize) { + while self.queue.len() > max_size { + self.queue.pop_max(); + } + } + + delegate! { + to self.queue { + pub(super) fn len(&self) -> usize; + pub(super) fn is_empty(&self) -> bool; + } + } +} diff --git a/src/passes/taso/qtz_circuit.rs b/src/optimiser/taso/qtz_circuit.rs similarity index 100% rename from src/passes/taso/qtz_circuit.rs rename to src/optimiser/taso/qtz_circuit.rs diff --git a/src/passes/taso.rs b/src/passes/taso.rs deleted file mode 100644 index 64494832..00000000 --- a/src/passes/taso.rs +++ /dev/null @@ -1,422 +0,0 @@ -//! TASO optimiser. -#![allow(missing_docs)] - -use std::path::Path; - -use hugr::Hugr; -// use super::{pattern::node_equality, CircFixedStructPattern, PatternRewriter, RewriteGenerator}; -// use crate::circuit::{ -// circuit::{Circuit, CircuitRewrite}, -// operation::Op, -// }; - -mod qtz_circuit; - -/// An equivalent circuit class (ECC), with a canonical representative. -#[derive(Clone)] -pub struct EqCircClass { - rep_circ: Hugr, - others: Vec, -} - -impl EqCircClass { - pub fn new(rep_circ: Hugr, others: Vec) -> Self { - Self { rep_circ, others } - } - - /// The representative circuit of the equivalence class. - pub fn rep_circ(&self) -> &Hugr { - &self.rep_circ - } - - /// The other circuits in the equivalence class. - pub fn others(&self) -> &[Hugr] { - &self.others - } - - /// All circuits in the equivalence class. - pub fn circuits(&self) -> impl Iterator { - std::iter::once(&self.rep_circ).chain(self.others.iter()) - } - - /// Consume into circuits of the equivalence class. - pub fn into_circuits(self) -> impl Iterator { - std::iter::once(self.rep_circ).chain(self.others) - } - - /// The number of circuits in the equivalence class. - /// - /// An ECC always has a representative circuit, so this method will always - /// return an integer strictly greater than 0. - pub fn n_circuits(&self) -> usize { - self.others.len() + 1 - } -} - -// TODO refactor so both implementations share more code - -pub fn load_eccs_json_file(path: impl AsRef) -> Vec { - let all_circs = qtz_circuit::load_ecc_set(path); - - all_circs - .into_values() - .map(|mut all| { - // TODO is the rep circ always the first?? - let rep_circ = all.remove(0); - - EqCircClass { - rep_circ, - others: all, - } - }) - .collect() -} - -// impl RepCircSet { -// // remove blank wires (up to an optional target or all) and report how many there were -// fn remove_blanks(circ: &mut Circuit, target: Option) -> usize { -// let mut blankedges: Vec<_> = circ -// .node_edges(circ.boundary()[0], Direction::Outgoing) -// .into_iter() -// .filter(|e| circ.edge_endpoints(*e).unwrap().1 == circ.boundary()[1]) -// .collect(); -// let nblank = blankedges.len(); -// if let Some(target) = target { -// assert!(nblank >= target, "not enough blank wires to reach target."); -// blankedges.drain(target..).for_each(drop); -// } -// for e in blankedges { -// circ.remove_edge(e); -// } - -// nblank -// } - -// fn to_rewrites<'s, 'a: 's>( -// &'s self, -// base_circ: &'a Circuit, -// ) -> impl Iterator + 's { -// /* -// generates rewrites from all circuits in set to representative circuit -// and reverse rewrites (chained) - -// assumes all circuits in set have same boundary - -// for pattern matching, removes blank wires (Input -> Output edges) in pattern -// and tries to remove the *same number* of blank wires from the -// replacement - -// (Therefore replacing blank wires with non-blank wires is not a supported operation, -// but the opposite is) -// */ -// let mut rep = self.rep_circ.clone(); -// let rep_blanks = Self::remove_blanks(&mut rep, None); -// let patterns = self.others.iter().map(|c2| { -// let mut c2 = c2.clone(); -// let blanks = Self::remove_blanks(&mut c2, None); -// ( -// CircFixedStructPattern::from_circ(c2, node_equality()), -// &self.rep_circ, -// blanks, -// ) -// }); - -// let patterns = patterns.chain(self.others.iter().map(move |c2| { -// ( -// CircFixedStructPattern::from_circ(rep.clone(), node_equality()), -// c2, -// rep_blanks, -// ) -// })); -// patterns.flat_map(|(pattern, c2, blanks)| { -// PatternRewriter::new(pattern, move |_| { -// let mut replacement = c2.clone(); -// Self::remove_blanks(&mut replacement, Some(blanks)); -// (replacement, 0.0) -// }) -// .into_rewrites(base_circ) -// // pattern_rewriter(pattern, base_circ, ) -// }) -// } -// } - -// pub fn taso_mpsc( -// circ: Circuit, -// repset: Vec, -// gamma: f64, -// cost: C, -// _timeout: i64, -// max_threads: usize, -// ) -> Circuit -// where -// C: Fn(&Circuit) -> usize + Send + Sync, -// { -// // bound the number of threads, chunk up the patterns in to each thread -// let n_threads = std::cmp::min(max_threads, repset.len()); - -// let (t_main, r_main) = mpsc::channel(); - -// let mut chunks: Vec> = (0..n_threads).map(|_| vec![]).collect(); - -// for (count, p) in repset.into_iter().enumerate() { -// chunks[count % n_threads].push((count, p)); -// } - -// let _rev_cost = |x: &Circuit| usize::MAX - cost(x); - -// let mut pq = PriorityQueue::new(); -// let mut cbest = circ.clone(); -// let cin_cost = _rev_cost(&circ); -// let mut cbest_cost = cin_cost; -// let chash = circuit_hash(&circ); -// // map of seen circuits, if the circuit has been popped from the queue, -// // holds None -// let mut dseen: HashMap> = HashMap::from_iter([(chash, Some(circ))]); -// pq.push(chash, cin_cost); - -// // each thread scans for rewrites using all the patterns in its chunk, and -// // sends rewritten circuits back to main -// let (joins, thread_ts): (Vec<_>, Vec<_>) = chunks -// .into_iter() -// .enumerate() -// .map(|(i, repsets)| { -// // channel for sending circuits to each thread -// let (t_this, r_this) = mpsc::channel(); -// let tn = t_main.clone(); -// let jn = thread::spawn(move || { -// for received in r_this { -// let sent_circ: Arc = if let Some(hc) = received { -// hc -// } else { -// // main has signalled no more circuits will be sent -// return; -// }; -// println!("thread {i} got one"); -// for (set_i, rcs) in &repsets { -// for rewrite in rcs.to_rewrites(&sent_circ) { -// // TODO here is where a optimal data-sharing copy would be handy -// let mut newc = sent_circ.as_ref().clone(); -// newc.apply_rewrite(rewrite).expect("rewrite failure"); - -// tn.send(Some(newc)).unwrap(); -// println!("thread {i} sent one back from set {set_i}"); -// } -// } -// // no more circuits will be generated, tell main this thread is -// // done with this circuit -// tn.send(None).unwrap(); -// } -// }); - -// (jn, t_this) -// }) -// .unzip(); - -// while let Some((hc, priority)) = pq.pop() { -// let seen_circ = dseen -// .insert(hc, None) -// .flatten() -// .expect("seen circ missing."); -// println!("\npopped one of size {}", &seen_circ.node_count()); - -// if priority > cbest_cost { -// cbest = seen_circ.clone(); -// cbest_cost = priority; -// } -// let seen_circ = Arc::new(seen_circ); -// // send the popped circuit to each thread -// for thread_t in &thread_ts { -// thread_t.send(Some(seen_circ.clone())).unwrap(); -// } -// let mut done_tracker = 0; -// for received in &r_main { -// let newc = if let Some(newc) = received { -// newc -// } else { -// done_tracker += 1; -// if done_tracker == n_threads { -// // all threads have said they are done with this circuit -// break; -// } else { -// continue; -// } -// }; -// println!("Main got one"); -// let newchash = circuit_hash(&newc); -// if dseen.contains_key(&newchash) { -// continue; -// } -// let newcost = _rev_cost(&newc); -// if gamma * (newcost as f64) > (cbest_cost as f64) { -// pq.push(newchash, newcost); -// dseen.insert(newchash, Some(newc)); -// } -// } -// } -// for (join, tx) in joins.into_iter().zip(thread_ts.into_iter()) { -// // tell all the threads we're done and join the threads -// tx.send(None).unwrap(); -// join.join().unwrap(); -// } -// cbest -// } - -// pub fn taso( -// circ: Circuit, -// repset: Vec, -// gamma: f64, -// cost: C, -// _timeout: i64, -// ) -> Circuit -// where -// C: Fn(&Circuit) -> usize + Send + Sync, -// { -// // TODO timeout - -// let _rev_cost = |x: &Circuit| usize::MAX - cost(x); - -// let mut pq = PriorityQueue::new(); -// let mut cbest = circ.clone(); -// let cin_cost = _rev_cost(&circ); -// let mut cbest_cost = cin_cost; -// let chash = circuit_hash(&circ); -// // map of seen circuits, if the circuit has been popped from the queue, -// // holds None -// let mut dseen: HashMap> = HashMap::from_iter([(chash, Some(circ))]); -// pq.push(chash, cin_cost); - -// while let Some((hc, priority)) = pq.pop() { -// // remove circuit from map and replace with None -// let seen_circ = dseen -// .insert(hc, None) -// .flatten() -// .expect("seen circ missing."); -// if priority > cbest_cost { -// cbest = seen_circ.clone(); -// cbest_cost = priority; -// } -// // par_iter implementation - -// // let pq = Mutex::new(&mut pq); -// // tra_patterns.par_iter().for_each(|(pattern, c2)| { -// // pattern_rewriter(pattern.clone(), &hc.0, |_| (c2.clone(), 0.0)).for_each(|rewrite| { -// // let mut newc = hc.0.clone(); -// // newc.apply_rewrite(rewrite).expect("rewrite failure"); -// // let newchash = circuit_hash(&newc); -// // let mut dseen = dseen.lock().unwrap(); -// // if dseen.contains(&newchash) { -// // return; -// // } -// // let newhc = HashCirc(newc); -// // let newcost = _rev_cost(&newhc); -// // if gamma * (newcost as f64) > (cbest_cost as f64) { -// // let mut pq = pq.lock().unwrap(); -// // pq.push(newhc, newcost); -// // dseen.insert(newchash); -// // } -// // }); -// // }) - -// // non-parallel implementation: - -// for rp in repset.iter() { -// for rewrite in rp.to_rewrites(&seen_circ) { -// // TODO here is where a optimal data-sharing copy would be handy -// let mut newc = seen_circ.clone(); -// newc.apply_rewrite(rewrite).expect("rewrite failure"); -// let newchash = circuit_hash(&newc); -// if dseen.contains_key(&newchash) { -// continue; -// } -// let newcost = _rev_cost(&newc); -// if gamma * (newcost as f64) > (cbest_cost as f64) { -// pq.push(newchash, newcost); -// dseen.insert(newchash, Some(newc)); -// } -// } -// } -// } -// cbest -// } - -// fn op_hash(op: &LeafOp) -> Option { -// type Op = LeafOp; -// Some(match op { -// Op::H => 1, -// Op::CX => 2, -// Op::ZZMax => 3, -// Op::Reset => 4, -// Op::Input => 5, -// Op::Output => 6, -// Op::Noop(_) => 7, -// Op::Measure => 8, -// Op::Barrier => 9, -// Op::AngleAdd => 10, -// Op::AngleMul => 11, -// Op::AngleNeg => 12, -// Op::QuatMul => 13, -// // Op::Copy { n_copies, typ } => todo!(), -// Op::RxF64 => 14, -// Op::RzF64 => 15, -// Op::TK1 => 16, -// Op::Rotation => 17, -// Op::ToRotation => 18, -// // should Const of different values be hash different? -// Op::Const(_) => 19, -// // Op::Custom(_) => todo!(), -// _ => return None, -// }) -// } - -// fn circuit_hash(circ: &Circuit) -> usize { -// // adapted from Quartz (Apache 2.0) -// // https://github.com/quantum-compiler/quartz/blob/2e13eb7ffb3c5c5fe96cf5b4246f4fd7512e111e/src/quartz/tasograph/tasograph.cpp#L410 -// let mut total: usize = 0; - -// let mut hash_vals: HashMap = HashMap::new(); -// let [i, _] = circ.boundary(); - -// let _ophash = |o| 17 * 13 + op_hash(o).expect("unhashable op"); -// hash_vals.insert(i, _ophash(&Op::Input)); - -// let initial_nodes = circ -// .dag -// .node_indices() -// .filter(|n| circ.dag.node_edges(*n, Direction::Incoming).count() == 0) -// .collect(); - -// for nid in TopSortWalker::new(circ.dag_ref(), initial_nodes) { -// if hash_vals.contains_key(&nid) { -// continue; -// } - -// let mut myhash = _ophash(circ.node_op(nid).expect("op not found.")); - -// for ine in circ.node_edges(nid, Direction::Incoming) { -// let (src, _) = circ.edge_endpoints(ine).expect("edge not found."); -// debug_assert!(hash_vals.contains_key(&src)); - -// let mut edgehash = hash_vals[&src]; - -// // TODO check if overflow arithmetic is intended - -// edgehash = edgehash.wrapping_mul(31).wrapping_add( -// circ.port_of_edge(src, ine, Direction::Outgoing) -// .expect("edge not found."), -// ); -// edgehash = edgehash.wrapping_mul(31).wrapping_add( -// circ.port_of_edge(nid, ine, Direction::Incoming) -// .expect("edge not found."), -// ); - -// myhash = myhash.wrapping_add(edgehash); -// } -// hash_vals.insert(nid, myhash); -// total = total.wrapping_add(myhash); -// } - -// total -// } - -// #[cfg(test)] -// mod tests; diff --git a/src/rewrite/ecc_rewriter.rs b/src/rewrite/ecc_rewriter.rs index dbfbae9b..05ca925a 100644 --- a/src/rewrite/ecc_rewriter.rs +++ b/src/rewrite/ecc_rewriter.rs @@ -25,7 +25,7 @@ use hugr::{ use crate::{ circuit::Circuit, - passes::taso::{load_eccs_json_file, EqCircClass}, + optimiser::taso::{load_eccs_json_file, EqCircClass}, portmatching::{CircuitPattern, PatternMatcher}, }; @@ -40,6 +40,7 @@ struct TargetID(usize); /// Valid rewrites turn a non-representative circuit into its representative, /// or a representative circuit into any of the equivalent non-representative /// circuits. +#[derive(Debug, Clone)] pub struct ECCRewriter { /// Matcher for finding patterns. matcher: PatternMatcher, diff --git a/src/rewrite/strategy.rs b/src/rewrite/strategy.rs index cfea36f2..645b5c16 100644 --- a/src/rewrite/strategy.rs +++ b/src/rewrite/strategy.rs @@ -86,6 +86,7 @@ impl RewriteStrategy for GreedyRewriteStrategy { /// strictly reduces the gate count. The default is gamma = 1.0001, as set /// in the Quartz paper. This essentially allows rewrites that improve or leave /// the number of nodes unchanged. +#[derive(Debug, Clone)] pub struct ExhaustiveRewriteStrategy { /// The gamma parameter. pub gamma: f64, diff --git a/taso-optimiser/Cargo.toml b/taso-optimiser/Cargo.toml new file mode 100644 index 00000000..eb862e14 --- /dev/null +++ b/taso-optimiser/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "taso-optimiser" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +clap = { version = "4.4.2", features = ["derive"] } +serde_json = "1.0" +tket2 = { path = "../", features = ["portmatching"] } +quantinuum-hugr = { workspace = true } +itertools = { workspace = true } +tket-json-rs = { workspace = true } \ No newline at end of file diff --git a/taso-optimiser/src/main.rs b/taso-optimiser/src/main.rs new file mode 100644 index 00000000..5cc0ca40 --- /dev/null +++ b/taso-optimiser/src/main.rs @@ -0,0 +1,95 @@ +use std::{fs, io, path::Path}; + +use clap::Parser; +use hugr::Hugr; +use tket2::{ + json::{load_tk1_json_file, TKETDecode}, + optimiser::TasoOptimiser, +}; +use tket_json_rs::circuit_json::SerialCircuit; + +/// Optimise circuits using Quartz-generated ECCs. +/// +/// Quartz: https://github.com/quantum-compiler/quartz +#[derive(Parser, Debug)] +#[clap(version = "1.0", long_about = None)] +#[clap(about = "Optimise circuits using Quartz-generated ECCs.")] +struct CmdLineArgs { + /// Input circuit file as TK1 JSON. + #[arg( + short, + long, + value_name = "FILE", + help = "Input. A quantum circuit in TK1 JSON format." + )] + input: String, + /// Output circuit file + #[arg( + short, + long, + default_value = "out.json", + value_name = "FILE", + help = "Output. A quantum circuit in TK1 JSON format." + )] + output: String, + /// ECC file + #[arg( + short, + long, + value_name = "ECC_FILE", + help = "Sets the ECC file to use. It is a JSON file of Quartz-generated ECCs." + )] + eccs: String, + /// Timeout in seconds (default=no timeout) + #[arg( + short, + long, + value_name = "TIMEOUT", + help = "Timeout in seconds (default=None)." + )] + timeout: Option, + /// Number of threads (default=1) + #[arg( + short = 'j', + long, + default_value = "1", + value_name = "N_THREADS", + help = "The number of threads to use. Currently only single-threaded TASO is supported." + )] + n_threads: usize, +} + +fn save_tk1_json_file(path: impl AsRef, circ: &Hugr) -> Result<(), std::io::Error> { + let file = fs::File::create(path)?; + let writer = io::BufWriter::new(file); + let serial_circ = SerialCircuit::encode(circ).unwrap(); + serde_json::to_writer_pretty(writer, &serial_circ)?; + Ok(()) +} + +fn main() { + let opts = CmdLineArgs::parse(); + + let input_path = Path::new(&opts.input); + let output_path = Path::new(&opts.output); + let ecc_path = Path::new(&opts.eccs); + + let circ = load_tk1_json_file(input_path).unwrap(); + + println!("Compiling rewriter..."); + let optimiser = if opts.n_threads == 1 { + println!("Using single-threaded TASO"); + TasoOptimiser::default_with_eccs_json_file(ecc_path) + } else { + unimplemented!("Multi-threaded TASO has been disabled until fixed"); + }; + println!("Optimising..."); + let opt_circ = optimiser + .optimise_with_default_log(&circ, opts.timeout) + .unwrap(); + + println!("Saving result"); + save_tk1_json_file(output_path, &opt_circ).unwrap(); + + println!("Done.") +} diff --git a/test_files/T_Tdg_H_X_CX_complete_ECC_set.json b/test_files/T_Tdg_H_X_CX_complete_ECC_set.json new file mode 100644 index 00000000..e17f12f5 --- /dev/null +++ b/test_files/T_Tdg_H_X_CX_complete_ECC_set.json @@ -0,0 +1,9649 @@ +[[], +{ +"0_2": [ +[[1,0,0,2,["bd6ef7f96a3f"],[-9.75927075462199589e-02,-4.04975393353440460e-01]],[["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,2,["bd6ef7f96a3e"],[-3.55369312154194761e-01,-2.17352381553619523e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"1_2": [ +[[1,0,0,2,["9f82b360087d"],[1.27673353248785815e-01,3.26706732953894963e-01]],[["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,2,["9f82b360087d"],[-1.40737852471959524e-01,3.21295240190043629e-01]],[["x", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"2_2": [ +[[1,0,0,3,["1584725ea81f9"],[1.61102697541570028e-01,7.39735570981055468e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["1584725ea81f9"],[1.61102697541570028e-01,7.39735570981055468e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"3_2": [ +[[1,0,0,3,["1171c24263446"],[-5.20337310333084502e-01,3.25517646527392457e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["1171c24263446"],[-5.20337310333084502e-01,3.25517646527392457e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"4_2": [ +[[1,0,0,3,["180740ba5aea7"],[-5.66990883300849569e-01,6.27103882389114187e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["180740ba5aea7"],[-5.66990883300849569e-01,6.27103882389114187e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"5_2": [ +[[1,0,0,3,["1a427c465918d"],[-8.51400327608670404e-02,9.20000185659316294e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["1a427c465918d"],[-8.51400327608670404e-02,9.20000185659316294e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"6_2": [ +[[1,0,0,3,["1b9c676513568"],[6.72830640197881857e-01,7.00757251867120790e-01]],[["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["1b9c676513568"],[6.72830640197881968e-01,7.00757251867120901e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"7_2": [ +[[1,0,0,3,["10b47a412ad45"],[5.76318811328448644e-01,-1.15378063283064256e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["10b47a412ad45"],[5.76318811328448644e-01,-1.15378063283064256e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"8_2": [ +[[1,0,0,3,["18214fe830239"],[8.43626970981259272e-01,9.53947759474635532e-02]],[["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["18214fe830239"],[8.43626970981259161e-01,9.53947759474634976e-02]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"9_2": [ +[[1,0,0,3,["171a6d01cb97b"],[3.34776323931035069e-01,7.40733760314271183e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["171a6d01cb97b"],[3.34776323931035069e-01,7.40733760314271183e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"10_2": [ +[[1,0,0,4,["1b0476344d225"],[8.98258779189859191e-01,-3.11054519756605252e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["1b0476344d225"],[-8.98258779189859191e-01,3.11054519756605252e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"11_2": [ +[[1,0,0,4,["7699a291cf8b"],[2.58986966104847283e-01,-3.07362532274243483e-02]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["7699a291cf8b"],[2.58986966104847283e-01,-3.07362532274243483e-02]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"12_2": [ +[[1,0,0,4,["168043bc94d28"],[-3.50837534002219842e-01,7.09702577742127305e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["168043bc94d28"],[2.53755905959295702e-01,7.49915104734766857e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"13_2": [ +[[1,0,0,4,["e36e88cc60ce"],[-3.89093585791698171e-01,3.14219604457321999e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["e36e88cc60ce"],[-3.89093585791698171e-01,3.14219604457321999e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"14_2": [ +[[1,0,0,4,["11452605f4c92"],[5.65686772000115301e-01,2.21861325384315689e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["11452605f4c92"],[2.43121304846525166e-01,5.56880600171094753e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"15_2": [ +[[1,0,0,4,["128a5e39fc99e"],[1.64241496765636485e-01,6.31321475819742517e-01]],[["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["128a5e39fc99e"],[5.62547972776048733e-01,3.30275420545628862e-01]],[["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"16_2": [ +[[1,0,0,4,["11b9825f5a761"],[-3.76281425662177371e-01,-4.97320138871900463e-01]],[["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["11b9825f5a761"],[3.76281425662177482e-01,4.97320138871900519e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"17_2": [ +[[1,0,0,4,["ed9c3e722c81"],[3.09196942668224228e-01,-4.21206144436787500e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["ed9c3e722c81"],[5.16472975891542285e-01,-7.92024661258432794e-02]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"18_2": [ +[[1,0,0,4,["dc117042538c"],[-4.29137358607633801e-01,2.23683093689171109e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["dc117042538c"],[4.29137358607633801e-01,-2.23683093689171109e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"19_2": [ +[[1,0,0,4,["14cfc2b05459b"],[-2.21186293699976111e-01,6.98036329995736504e-01]],[["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["14cfc2b05459b"],[-6.49988550635328455e-01,3.37183894273783480e-01]],[["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"20_2": [ +[[1,0,0,4,["3bfdb820e20d"],[1.13089223439859388e-01,-6.79278284217402356e-02]],[["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["3bfdb820e20d"],[-1.13089223439859443e-01,6.79278284217401801e-02]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"21_2": [ +[[1,0,0,4,["185a80da2f9fe"],[3.56146874117798551e-01,7.79342450610246984e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["185a80da2f9fe"],[8.02912201480134757e-01,2.99244461905960546e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"22_2": [ +[[1,0,0,4,["18c552297b1d1"],[2.62937250379791432e-01,8.30935522706506280e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["18c552297b1d1"],[-2.62937250379791432e-01,-8.30935522706506280e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"23_2": [ +[[1,0,0,5,["15a450387bf6d"],[7.57708468799010437e-01,7.54413408623599846e-02]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["15a450387bf6d"],[-7.57708468799010437e-01,-7.54413408623599846e-02]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"24_2": [ +[[1,0,0,5,["1c4f6c01890e4"],[7.24349012820901361e-01,-6.83732441276049374e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["1c4f6c01890e4"],[-7.24349012820901361e-01,6.83732441276049374e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"25_2": [ +[[1,0,0,5,["15ee532a285bf"],[-4.50764088101658467e-01,6.26274589427639805e-01]],[["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["15ee532a285be"],[1.24104665657051860e-01,7.61581352481157881e-01]],[["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"26_2": [ +[[1,0,0,5,["12caefe1df671"],[6.44566580081004092e-01,1.47420449735668008e-01]],[["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["12caefe1df671"],[5.60019399395161210e-01,-3.51535400007838283e-01]],[["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"27_2": [ +[[1,0,0,5,["d09a18393453"],[-9.59398521257103370e-02,-4.48575569764987914e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["d09a18393453"],[-3.85030547279566315e-01,-2.49351107231317703e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"28_2": [ +[[1,0,0,5,["fbd025d7681e"],[-1.62015489947409386e-01,5.29511174842894339e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["fbd025d7681e"],[2.59858690846392126e-01,4.88983194044540215e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"29_2": [ +[[1,0,0,5,["1951ad4af4eba"],[3.43957668351530799e-01,8.21754178286010606e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["1951ad4af4eba"],[-3.37853152201936235e-01,8.24282751666898239e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"30_2": [ +[[1,0,0,5,["178aeb41529d1"],[2.41566700193027922e-01,7.92326832410530479e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["178aeb41529d1"],[-3.89446224298195642e-01,7.31073127928890898e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"31_2": [ +[[2,0,0,2,["11690866dd1ed"],[5.50506829687813060e-01,2.68671072298621416e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,3,["11690866dd1ed"],[5.50506829687813060e-01,2.68671072298621416e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"32_2": [ +[[2,0,0,2,["c95a7e406c65"],[3.77380520442800460e-01,-2.31600865684639834e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,3,["c95a7e406c65"],[3.77380520442800460e-01,-2.31600865684639834e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"33_2": [ +[[2,0,0,2,["167235d5861f7"],[7.15261085017824483e-01,-3.34830680185510099e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,3,["167235d5861f7"],[7.15261085017824483e-01,-3.34830680185510099e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"34_2": [ +[[2,0,0,2,["fdc4e50244a4"],[4.77999392524087852e-01,2.87975527480987370e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,3,["fdc4e50244a4"],[4.77999392524087852e-01,2.87975527480987370e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"35_2": [ +[[2,0,0,2,["9852e51d48f9"],[2.07836857342719256e-01,2.62686985279481422e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,2,["9852e51d48f9"],[2.07836857342719256e-01,2.62686985279481422e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"36_2": [ +[[2,0,0,2,["7f80ddba499d"],[-6.38877821001723745e-03,-2.80310108532902058e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,2,["7f80ddba499d"],[-6.38877821001723745e-03,-2.80310108532902058e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"37_2": [ +[[2,0,0,2,["bc4a3359c4c8"],[3.96487737228931270e-01,-1.19323016722139713e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,2,["bc4a3359c4c8"],[3.96487737228931270e-01,-1.19323016722139713e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q0"],["Q0"]]]] +] +,"38_2": [ +[[2,0,0,2,["84c7badc1086"],[1.55218353595241942e-01,-2.47312589868220550e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,2,["84c7badc1086"],[1.55218353595241942e-01,-2.47312589868220550e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q0"],["Q0"]]]] +] +,"39_2": [ +[[2,0,0,3,["9c681611eddc"],[3.43873790561313730e-01,-6.83549777736253139e-03]],[["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,3,["9c681611eddc"],[3.43873790561313730e-01,-6.83549777736253139e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"40_2": [ +[[2,0,0,3,["130e1ec52230e"],[5.01768430106060093e-01,4.44660818816147274e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,3,["130e1ec52230e"],[5.01768430106060093e-01,4.44660818816147274e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"41_2": [ +[[2,0,0,3,["102a7a6683da5"],[3.31202162033177594e-01,-4.62412190201298257e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,3,["102a7a6683da5"],[3.31202162033177594e-01,-4.62412190201298368e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"42_2": [ +[[2,0,0,3,["102b85c57c246"],[5.68197066192890343e-01,2.89017690480135037e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,3,["102b85c57c246"],[5.68197066192890343e-01,2.89017690480135592e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"43_2": [ +[[2,0,0,3,["8c819e0ec3bd"],[-2.71255418853001418e-01,-1.47942808910831169e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,3,["8c819e0ec3bd"],[-2.71255418853001362e-01,-1.47942808910831142e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"44_2": [ +[[2,0,0,3,["9660d3bd8020"],[1.17884124099227883e-01,3.08959629336980235e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,3,["9660d3bd8020"],[1.17884124099227994e-01,3.08959629336980235e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"45_2": [ +[[2,0,0,3,["10257b8ce348c"],[4.93868674219528736e-01,2.80772284344360523e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,3,["10257b8ce348c"],[4.93868674219528736e-01,2.80772284344360523e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"46_2": [ +[[2,0,0,3,["104806284a471"],[3.11626976370473541e-01,4.80670831593943304e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["104806284a471"],[5.60239152730876100e-01,1.19532056346432436e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"47_2": [ +[[2,0,0,3,["103fcb0a83332"],[5.69513926449713770e-01,-5.01489592785550609e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["103fcb0a83332"],[4.38167828548083560e-01,3.67246490197454922e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"48_2": [ +[[2,0,0,3,["156d6be7762be"],[7.27549702318450064e-01,-1.97617329607147979e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,3,["156d6be7762be"],[3.74718774314438563e-01,-6.54191882004821479e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"49_2": [ +[[2,0,0,3,["1567fd4579e8b"],[5.37872741186063763e-01,-5.27208616545391751e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,3,["1567fd4579e8b"],[7.53126250567287325e-01,7.54067484883770567e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"50_2": [ +[[2,0,0,3,["e4b916a9f26b"],[4.03230627400637420e-01,3.00634439217933702e-01]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["e4b916a9f26b"],[4.03230627400637420e-01,3.00634439217933702e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"51_2": [ +[[2,0,0,3,["1260f96da5804"],[6.33370123337078095e-01,1.30362201111104803e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["1260f96da5804"],[6.33370123337078095e-01,1.30362201111104803e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"52_2": [ +[[2,0,0,3,["1561cc7c3fa9d"],[7.50910778086348540e-01,4.59142244891939666e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["1561cc7c3fa9d"],[5.63440362740154299e-01,-4.98507843761693270e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"53_2": [ +[[2,0,0,3,["14571261da002"],[4.20825641304143239e-01,-5.78849844467246633e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["14571261da002"],[7.06877314974905802e-01,-1.11739985648231038e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"54_2": [ +[[2,0,0,3,["10520f8946e3e"],[5.09341110428875310e-01,2.65159877451163040e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,3,["10520f8946e3e"],[5.09341110428875310e-01,2.65159877451163040e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"55_2": [ +[[2,0,0,3,["11045db5cee4c"],[5.79203430968351807e-01,-1.51678136977593858e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,3,["11045db5cee4c"],[5.79203430968351807e-01,-1.51678136977593858e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"56_2": [ +[[2,0,0,3,["412d519343ed"],[1.42568957331828644e-01,-1.47097304403377149e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,3,["412d519343ed"],[1.42568957331828644e-01,-1.47097304403377149e-02]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"57_2": [ +[[2,0,0,3,["d44266dbef79"],[4.52860474654160128e-01,-1.13072475945590403e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,3,["d44266dbef79"],[4.52860474654160128e-01,-1.13072475945590403e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"58_2": [ +[[2,0,0,3,["14d5a758ff0b"],[1.57057408244628272e-02,4.30396492802003067e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,3,["14d5a758ff0b"],[1.57057408244628272e-02,4.30396492802003067e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"59_2": [ +[[2,0,0,3,["157fdc1f3ba82"],[7.21253814948408012e-01,2.28038540946943591e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["157fdc1f3ba82"],[7.21253814948407790e-01,2.28038540946943535e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"60_2": [ +[[2,0,0,3,["18ce604d7f491"],[8.57359435044064755e-01,-1.63387688024849931e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["18ce604d7f491"],[8.57359435044064533e-01,-1.63387688024849931e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"61_2": [ +[[2,0,0,3,["a7c0c07d27fe"],[-3.19215726926489030e-01,1.84886660893692462e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["a7c0c07d27fe"],[-3.19215726926489030e-01,1.84886660893692462e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"62_2": [ +[[2,0,0,3,["5d606513d0dc"],[2.00768064490916387e-01,-4.30760384672939645e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["5d606513d0dc"],[2.00768064490916387e-01,-4.30760384672939645e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"63_2": [ +[[2,0,0,3,["d20355112127"],[3.27665109396132803e-01,3.25448196307111082e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["d20355112127"],[3.27665109396132803e-01,3.25448196307111082e-01]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"64_2": [ +[[2,0,0,3,["1074aeb2f0d75"],[5.57804605332573478e-01,1.55175958200282182e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["1074aeb2f0d75"],[5.57804605332573478e-01,1.55175958200282182e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"65_2": [ +[[2,0,0,3,["15a924d8a4c71"],[3.32511046052567205e-01,6.85756106122724196e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,3,["15a924d8a4c71"],[3.32511046052567205e-01,6.85756106122724196e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"66_2": [ +[[2,0,0,3,["991311885109"],[3.13650500502664631e-01,-1.22198967372996292e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,3,["991311885109"],[3.13650500502664631e-01,-1.22198967372996292e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"67_2": [ +[[2,0,0,4,["49d9f0ef9ba0"],[1.21355963746280826e-01,1.07920105781744796e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["49d9f0ef9ba0"],[1.21355963746280826e-01,1.07920105781744796e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"68_2": [ +[[2,0,0,4,["103249b6aea55"],[-5.19632641021543829e-01,2.33931656616887113e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,4,["103249b6aea55"],[-5.19632641021543829e-01,2.33931656616887085e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"69_2": [ +[[2,0,0,4,["13c340f8b0dcf"],[6.94971936531093681e-01,2.25765859541601638e-02]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["13c340f8b0dcf"],[6.94971936531093681e-01,2.25765859541602193e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"70_2": [ +[[2,0,0,4,["b3110b5a67d5"],[-1.35748335014711730e-01,3.69632846096054180e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["b3110b5a67d5"],[-1.35748335014711674e-01,3.69632846096054180e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"71_2": [ +[[2,0,0,4,["12e99d68791a8"],[5.83324063201399179e-01,-3.20195939523746254e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,4,["12e99d68791a8"],[5.83324063201399179e-01,-3.20195939523746143e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"72_2": [ +[[2,0,0,4,["6244b481e609"],[1.72564068384724822e-01,1.30070958469210241e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["6244b481e609"],[1.72564068384724878e-01,1.30070958469210296e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"73_2": [ +[[2,0,0,4,["62b4e824e5bc"],[1.69505987543945441e-01,1.35580260376021666e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["62b4e824e5bc"],[1.69505987543945497e-01,1.35580260376021722e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"74_2": [ +[[2,0,0,4,["92d0ef2b2a48"],[1.29269563670486920e-01,2.95842653677052203e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["92d0ef2b2a48"],[1.29269563670486920e-01,2.95842653677052203e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"75_2": [ +[[2,0,0,4,["1182d4b7abda9"],[6.13604029781297911e-01,-5.55744226806711983e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["1182d4b7abda9"],[6.13604029781297911e-01,-5.55744226806711150e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"76_2": [ +[[2,0,0,4,["ef0a4c1a687a"],[5.16895427114568928e-01,9.55631102443875724e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["ef0a4c1a687a"],[5.16895427114568928e-01,9.55631102443875585e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"77_2": [ +[[2,0,0,4,["5ddac860d9c2"],[-1.89505758350040521e-01,-8.17543712508082554e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["5ddac860d9c2"],[-1.89505758350040521e-01,-8.17543712508083664e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"78_2": [ +[[2,0,0,4,["6f9da1690a4d"],[3.61344635962670691e-02,2.42771191676957432e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["6f9da1690a4d"],[3.61344635962670691e-02,2.42771191676957460e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"79_2": [ +[[2,0,0,4,["7cd7f2845e13"],[-2.50378001351246382e-01,1.12604152498393562e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["7cd7f2845e13"],[-2.50378001351246382e-01,1.12604152498393562e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"80_2": [ +[[2,0,0,4,["131c4d413ad20"],[6.72343850709397506e-01,-8.11619632567003868e-03]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["131c4d413ad20"],[6.72343850709397506e-01,-8.11619632567003868e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"81_2": [ +[[2,0,0,4,["b7e6edc9b3bd"],[-3.78450715903198232e-01,-1.42542606250667003e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["b7e6edc9b3bd"],[-3.78450715903198120e-01,-1.42542606250667003e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"82_2": [ +[[2,0,0,4,["1623fdd703e7c"],[7.72383261753404105e-01,1.01338560817292617e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["1623fdd703e7c"],[7.72383261753404105e-01,1.01338560817292617e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"83_2": [ +[[2,0,0,4,["168a207a92be3"],[7.84252065628455508e-01,1.17734675973860031e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["168a207a92be3"],[7.84252065628455508e-01,1.17734675973860031e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"84_2": [ +[[2,0,0,4,["74292f48af91"],[-1.94697273670660365e-02,2.54697397357637079e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["74292f48af91"],[-1.94697273670659809e-02,2.54697397357637023e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"85_2": [ +[[2,0,0,4,["cad2dcad1ea5"],[2.60807183743621940e-01,-3.61812231539775098e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["cad2dcad1ea5"],[2.60807183743621884e-01,-3.61812231539775042e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"86_2": [ +[[2,0,0,4,["12438ffd6cd0e"],[6.38592044482445997e-01,-7.16981896135097663e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["12438ffd6cd0e"],[6.38592044482446108e-01,-7.16981896135097663e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"87_2": [ +[[2,0,0,4,["91a943e7961a"],[1.61398079617135398e-01,-2.76677901430024520e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,4,["91a943e7961a"],[1.61398079617135398e-01,-2.76677901430024520e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"88_2": [ +[[2,0,0,4,["d7951cf6309d"],[4.74023522254957141e-01,-6.70015066378827628e-03]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["d7951cf6309d"],[4.74023522254957141e-01,-6.70015066378827628e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"89_2": [ +[[2,0,0,4,["ee24bcedba56"],[5.23427872416220685e-01,-1.63482116619299081e-02]],[["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["ee24bcedba56"],[5.23427872416220685e-01,-1.63482116619299081e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"90_2": [ +[[2,0,0,4,["bc0a8697f51b"],[4.07836965355963532e-01,6.82412857535284190e-02]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,4,["bc0a8697f51b"],[4.07836965355963532e-01,6.82412857535284190e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"91_2": [ +[[2,0,0,4,["78d87a84d9ca"],[2.51748327849306452e-01,8.50985552110001542e-02]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["78d87a84d9ca"],[2.51748327849306452e-01,8.50985552110001542e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"92_2": [ +[[2,0,0,4,["74eb82755129"],[2.23636386187249681e-01,1.26854915587231665e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["74eb82755129"],[2.23636386187249681e-01,1.26854915587231665e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"93_2": [ +[[2,0,0,4,["144b886591eed"],[7.13998794957602989e-01,-9.98364056526319932e-03]],[["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["144b886591eed"],[7.13998794957602989e-01,-9.98364056526324095e-03]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"94_2": [ +[[2,0,0,4,["14f47193cb79e"],[7.37253038403913430e-01,-6.70450106862394146e-03]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["14f47193cb79e"],[7.37253038403913319e-01,-6.70450106862391371e-03]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"95_2": [ +[[2,0,0,4,["a4e5e7c5b79a"],[-3.38327412310512277e-01,-1.30475946154504335e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["a4e5e7c5b79a"],[-3.38327412310512277e-01,-1.30475946154504335e-01]],[["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"96_2": [ +[[2,0,0,4,["5b58014af83f"],[1.79256720919956369e-02,-2.00065618358676395e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["5b58014af83f"],[1.79256720919956369e-02,-2.00065618358676395e-01]],[["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"97_2": [ +[[2,0,0,4,["a7bb47027f27"],[2.49373489786161695e-01,2.71771829904849049e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["a7bb47027f27"],[2.49373489786161695e-01,2.71771829904849049e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"98_2": [ +[[2,0,0,4,["113bba9022696"],[5.97386059122684054e-01,1.03837352231601038e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["113bba9022696"],[5.97386059122684054e-01,1.03837352231601038e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"99_2": [ +[[2,0,0,4,["a11700faf47a"],[3.17046672138562191e-01,-1.58011487205711065e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["a11700faf47a"],[3.17046672138562191e-01,-1.58011487205711065e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"100_2": [ +[[2,0,0,4,["ecb486e69d8c"],[2.63020903466833322e-01,4.49178456886540012e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["ecb486e69d8c"],[5.03600997262591776e-01,1.31633268392171543e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"101_2": [ +[[2,0,0,4,["f4aa35aace8d"],[5.38021551742310478e-01,-1.54288637491489800e-03]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["f4aa35aace8d"],[3.81529673079799292e-01,3.79347702243194085e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"102_2": [ +[[2,0,0,4,["1401ee638b50f"],[6.97758576929941365e-01,-9.31804922376758826e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["1401ee638b50f"],[4.27501263442675805e-01,-5.59278379313798091e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"103_2": [ +[[2,0,0,4,["d1f7416074be"],[-7.19305520670301957e-03,4.61663734832042594e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["d1f7416074be"],[4.61663734832042594e-01,7.19305520670299181e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"104_2": [ +[[2,0,0,4,["155d68edf914f"],[5.55439934798820922e-01,-5.06511952570488422e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["155d68edf914f"],[7.50913380852691437e-01,3.45973080234288077e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"105_2": [ +[[2,0,0,4,["d10fea355adf"],[3.57514167154391882e-01,-2.89028812595894635e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["d10fea355adf"],[2.89028812595894635e-01,3.57514167154391882e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"106_2": [ +[[2,0,0,4,["6d025231ce29"],[1.74021914910589437e-01,-1.64860310967642004e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["6d025231ce29"],[1.74021914910589409e-01,-1.64860310967642087e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"107_2": [ +[[2,0,0,4,["112397d1ecef7"],[6.02037443734702471e-01,-3.45182584960433969e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["112397d1ecef7"],[-3.45182584960434802e-02,-6.02037443734702582e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"108_2": [ +[[2,0,0,4,["1119fb9c8ff9c"],[3.33793712831567502e-01,-5.00630726524110115e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["1119fb9c8ff9c"],[5.00630726524110115e-01,3.33793712831567502e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"109_2": [ +[[2,0,0,4,["9ec534cd3402"],[2.70431058119932177e-01,2.20829226409448076e-01]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["9ec534cd3402"],[2.70431058119932177e-01,2.20829226409448076e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"110_2": [ +[[2,0,0,4,["10f228bd8372d"],[5.95897454510954439e-01,-1.99720820168502455e-02]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["10f228bd8372d"],[5.95897454510954439e-01,-1.99720820168502455e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"111_2": [ +[[2,0,0,4,["92182d15bf9a"],[-5.88500487674994410e-02,-3.15828932714468269e-01]],[["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["92182d15bf9a"],[-5.88500487674994410e-02,-3.15828932714468269e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"112_2": [ +[[2,0,0,4,["ba3386772140"],[-3.10759020567136224e-01,-2.66621603598349244e-01]],[["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["ba3386772140"],[-3.10759020567136224e-01,-2.66621603598349244e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"113_2": [ +[[2,0,0,4,["9a5bca86c394"],[3.18589996209486470e-01,-1.17126476992693379e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["9a5bca86c394"],[3.18589996209486470e-01,-1.17126476992693379e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"114_2": [ +[[2,0,0,4,["afdb7d464067"],[-6.18243096929139702e-02,-3.81740533863992759e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["afdb7d464067"],[-6.18243096929139424e-02,-3.81740533863992759e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"115_2": [ +[[2,0,0,4,["105806bdb1192"],[3.34260242873956892e-01,-4.67921492108109627e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["105806bdb1192"],[3.34260242873956948e-01,-4.67921492108109682e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"116_2": [ +[[2,0,0,4,["e5820e2c8de6"],[4.71488463526161417e-01,1.80039301973072247e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["e5820e2c8de6"],[4.71488463526161417e-01,1.80039301973072247e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"117_2": [ +[[2,0,0,4,["11317f70f8e52"],[5.89029435576892135e-01,-1.37816562886689170e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["11317f70f8e52"],[5.89029435576892024e-01,-1.37816562886689226e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"118_2": [ +[[2,0,0,4,["d4a4f5b1d766"],[4.19009830578930653e-01,2.07580833709794910e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,4,["d4a4f5b1d766"],[4.19009830578930653e-01,2.07580833709794910e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"119_2": [ +[[2,0,0,4,["7d011ce8e7cb"],[-2.48627333031305159e-01,-1.17250026631000925e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["7d011ce8e7cb"],[-2.48627333031305187e-01,-1.17250026631000981e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"120_2": [ +[[2,0,0,4,["c0c43c636089"],[1.60551645158224510e-03,4.23895078075397280e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["c0c43c636089"],[1.60551645158218959e-03,4.23895078075397391e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"121_2": [ +[[2,0,0,4,["95a535ac40c3"],[-3.00491821459373032e-01,1.34142099679879223e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["95a535ac40c3"],[-3.00491821459373032e-01,1.34142099679879223e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"122_2": [ +[[2,0,0,4,["12f1c37aaedba"],[6.41560054547434255e-01,1.80789499378791269e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,4,["12f1c37aaedba"],[6.41560054547434255e-01,1.80789499378791269e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"123_2": [ +[[2,0,0,4,["113e19f8caa1e"],[5.74388894552275153e-01,-1.95256909778140336e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["113e19f8caa1e"],[5.74388894552275153e-01,-1.95256909778140336e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"124_2": [ +[[2,0,0,4,["ac828839ca20"],[3.35034030123037507e-01,-1.77935652344404449e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["ac828839ca20"],[3.35034030123037507e-01,-1.77935652344404449e-01]],[["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"125_2": [ +[[2,0,0,4,["9d68d7e28176"],[2.40118078730590795e-01,-2.49321530780130307e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["9d68d7e28176"],[2.40118078730590795e-01,-2.49321530780130307e-01]],[["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"126_2": [ +[[2,0,0,4,["5b78db1c35a0"],[2.00166160670042725e-01,1.98628581052122943e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["5b78db1c35a0"],[2.00166160670042725e-01,1.98628581052123221e-02]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"127_2": [ +[[2,0,0,4,["13c74a0d67b94"],[6.43270558181252006e-01,-2.65462434533921932e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["13c74a0d67b94"],[6.43270558181252006e-01,-2.65462434533921932e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"128_2": [ +[[2,0,0,4,["15ad48e4de3f7"],[7.49230245538825446e-01,-1.42642395165399644e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["15ad48e4de3f8"],[4.28922382384420264e-01,-6.30649192196710784e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"129_2": [ +[[2,0,0,4,["13eaf79e364b3"],[4.61672036789679718e-01,-5.27233324449025376e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["13eaf79e364b3"],[6.99261686883620781e-01,-4.63588310872452558e-02]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"130_2": [ +[[2,0,0,4,["115a5eb1aa7cd"],[5.06891613804612007e-01,3.40349668202875266e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["115a5eb1aa7cd"],[3.40349668202875266e-01,-5.06891613804612007e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"131_2": [ +[[2,0,0,4,["f7b0bb0db3b1"],[4.00807366294390899e-02,-5.43200151398722575e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["f7b0bb0db3b1"],[5.43200151398722575e-01,4.00807366294391176e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"132_2": [ +[[2,0,0,4,["d71980b51fef"],[-1.13228731067287244e-01,-4.59256825687313075e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["d71980b51fef"],[-1.13228731067287119e-01,-4.59256825687313019e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"133_2": [ +[[2,0,0,4,["a4009f5b4ee0"],[2.61974726233880628e-01,-2.47859183794570115e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["a4009f5b4ee0"],[9.98119577896303123e-03,-3.60507015059969682e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"134_2": [ +[[2,0,0,4,["a0207d20e695"],[3.51927936878993153e-01,-1.17128861124619343e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["a0207d20e695"],[2.57132891853514955e-01,2.40568369458739800e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"135_2": [ +[[2,0,0,4,["c3844bc3eae3"],[4.21134917903411898e-01,-8.65961865215385818e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["c3844bc3eae3"],[4.21134917903411898e-01,-8.65961865215385818e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"136_2": [ +[[2,0,0,4,["168f8fb62a8ea"],[7.88678698604279749e-01,8.99104429618299283e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,4,["168f8fb62a8ea"],[7.88678698604279749e-01,8.99104429618299283e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"137_2": [ +[[2,0,0,4,["8c32ce57f856"],[3.05741589472912967e-01,-3.96329514748212236e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["8c32ce57f856"],[3.05741589472912967e-01,-3.96329514748212236e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"138_2": [ +[[2,0,0,4,["c8147cfb84ec"],[2.09548781306361509e-02,4.39481353135563135e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,4,["c8147cfb84ec"],[2.09548781306361509e-02,4.39481353135563135e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"139_2": [ +[[2,0,0,4,["165348c9664ad"],[7.39896043090900957e-01,-2.63758092006343370e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["165348c9664ad"],[7.39896043090900957e-01,-2.63758092006343370e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"140_2": [ +[[2,0,0,4,["1689459725068"],[6.96971334476778726e-01,-3.78096999668450062e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["1689459725068"],[6.96971334476778726e-01,-3.78096999668450062e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"141_2": [ +[[2,0,0,4,["f91518598f65"],[3.93941425682023616e-01,3.80561513722573186e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["f91518598f65"],[3.93941425682023616e-01,3.80561513722573186e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"142_2": [ +[[2,0,0,4,["ec374afa5143"],[5.09339730492626375e-01,1.01958698252336874e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["ec374afa5143"],[5.09339730492626375e-01,1.01958698252336874e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"143_2": [ +[[2,0,0,4,["c4d2b2ee6771"],[3.48236759090790549e-01,2.57027175212424797e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["c4d2b2ee6771"],[3.48236759090790549e-01,2.57027175212424797e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"144_2": [ +[[2,0,0,4,["ed06e7a3799e"],[2.65140640353343171e-01,-4.48752587741989895e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["ed06e7a3799e"],[2.65140640353343171e-01,-4.48752587741989895e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"145_2": [ +[[2,0,0,4,["11c8e92773b78"],[6.21454247070986066e-01,7.31730112095535373e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["11c8e92773b78"],[6.21454247070986066e-01,7.31730112095535373e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"146_2": [ +[[2,0,0,4,["7d4379bf75d8"],[1.44565219920481242e-01,2.34473327418048022e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["7d4379bf75d8"],[1.44565219920481242e-01,2.34473327418048022e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"147_2": [ +[[2,0,0,4,["5fd9ed077eba"],[-2.10775722623252976e-01,-1.20699118959402552e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["5fd9ed077eba"],[-2.10775722623252976e-01,-1.20699118959402552e-03]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"148_2": [ +[[2,0,0,4,["85ae36b09819"],[3.22409363342757160e-03,2.93948895954753708e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["85ae36b09819"],[3.22409363342757160e-03,2.93948895954753708e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"149_2": [ +[[2,0,0,4,["159de32f0df51"],[6.84500626780853660e-01,-3.31554218252511079e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["159de32f0df51"],[6.84500626780853660e-01,-3.31554218252511079e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"150_2": [ +[[2,0,0,4,["e73382075038"],[5.07386552118969658e-01,3.23504458751514012e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["e73382075038"],[5.07386552118969658e-01,3.23504458751514012e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"151_2": [ +[[2,0,0,4,["13902c150debb"],[6.88300992308565118e-01,4.83094527581034994e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["13902c150debb"],[6.88300992308565118e-01,4.83094527581034994e-03]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"152_2": [ +[[2,0,0,4,["9b22b741ee7d"],[3.69017012235167696e-02,3.39145118549982805e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["9b22b741ee7d"],[3.69017012235167696e-02,3.39145118549982805e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"153_2": [ +[[2,0,0,4,["8d820eaa4b1d"],[1.06015320224176590e-01,2.92563514180412820e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["8d820eaa4b1d"],[1.06015320224176590e-01,2.92563514180412820e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"154_2": [ +[[2,0,0,4,["fb5588566c63"],[4.97352303583100563e-01,2.41052757253451821e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["fb5588566c63"],[4.97352303583100563e-01,2.41052757253451821e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"155_2": [ +[[2,0,0,4,["15863992bc0aa"],[6.89834717437578626e-01,-3.12507524427015015e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["15863992bc0aa"],[6.89834717437578626e-01,-3.12507524427015015e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"156_2": [ +[[2,0,0,4,["114a7f388689c"],[-5.54731434539164847e-01,2.49781655752995768e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["114a7f388689c"],[-5.54731434539164847e-01,2.49781655752995824e-01]],[["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"157_2": [ +[[2,0,0,4,["b03028d64491"],[3.63958346728193660e-01,-1.32836195419173408e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["b03028d64491"],[3.63958346728193660e-01,-1.32836195419173408e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"158_2": [ +[[2,0,0,4,["837e3613d38e"],[2.45175035864623247e-01,-1.53298746271083391e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["837e3613d38e"],[2.45175035864623247e-01,-1.53298746271083391e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"159_2": [ +[[2,0,0,4,["16c44bdb85e37"],[7.95909124553902947e-01,9.04745876379600689e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["16c44bdb85e37"],[7.95909124553902947e-01,9.04745876379600689e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"160_2": [ +[[2,0,0,4,["ca40d5c13118"],[4.38233249570997074e-01,-7.59127377846132712e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["ca40d5c13118"],[2.56199290847132444e-01,-3.63556114179005019e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"161_2": [ +[[2,0,0,4,["15950071e250f"],[7.56010074180524128e-01,-7.11469179002637564e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["15950071e250f"],[7.56010074180524128e-01,-7.11469179002637564e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"162_2": [ +[[2,0,0,4,["957ca75aa58b"],[2.01483159178337090e-01,2.59739898762123667e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["957ca75aa58b"],[2.01483159178337090e-01,2.59739898762123667e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"163_2": [ +[[2,0,0,4,["8e95ec1ef076"],[1.94865540115427532e-01,2.45642983498625456e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["8e95ec1ef076"],[1.94865540115427532e-01,2.45642983498625456e-01]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"164_2": [ +[[2,0,0,4,["47fec4988425"],[5.60738745841328767e-02,1.48056256957609822e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["47fec4988425"],[-6.50413663259794550e-02,1.44341800257668185e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"165_2": [ +[[2,0,0,4,["1541647b90f4f"],[4.61500059104706484e-01,-5.88482129024404554e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1541647b90f4f"],[4.61500059104706484e-01,-5.88482129024404554e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"166_2": [ +[[2,0,0,4,["74e699cfbe8d"],[-1.38607864780303791e-02,-2.56693592830909534e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["74e699cfbe8d"],[-1.38607864780303791e-02,-2.56693592830909534e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"167_2": [ +[[2,0,0,4,["eca13b6d8aa2"],[5.20331936506449821e-01,4.84167507232713401e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["eca13b6d8aa2"],[5.20331936506449821e-01,4.84167507232713401e-03]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"168_2": [ +[[2,0,0,4,["d59def525bf9"],[-6.94669885245416951e-02,-4.64583779274785280e-01]],[["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["d59def525bf9"],[-6.94669885245418200e-02,-4.64583779274785336e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"169_2": [ +[[2,0,0,4,["1255c87fddb55"],[2.81655644784715442e-02,-6.44493500780402240e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1255c87fddb55"],[2.81655644784715442e-02,-6.44493500780402240e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"170_2": [ +[[2,0,0,4,["131a175a46c6b"],[1.16543015132663977e-01,6.61907377359734594e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["131a175a46c6b"],[1.16543015132663977e-01,6.61907377359734594e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"171_2": [ +[[2,0,0,4,["110a9711aeb33"],[7.20926504648822519e-02,5.95239952925911142e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["110a9711aeb33"],[7.20926504648822519e-02,5.95239952925911142e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"172_2": [ +[[2,0,0,4,["1529f8f7f3eda"],[5.02087103066525264e-01,5.49907244770743153e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["1529f8f7f3eda"],[5.02087103066525264e-01,5.49907244770743153e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"173_2": [ +[[2,0,0,4,["1709f5f107ffb"],[5.80659245250727096e-01,5.65617078389338168e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["1709f5f107ffb"],[5.80659245250727096e-01,5.65617078389338168e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"174_2": [ +[[2,0,0,4,["3a2708fe2b93"],[8.42875895912526540e-02,9.61693995935735124e-02]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["3a2708fe2b93"],[8.42875895912526540e-02,9.61693995935735124e-02]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"175_2": [ +[[2,0,0,4,["cdca4dae1ffe"],[3.35447719078558471e-02,4.51292559224420020e-01]],[["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["cdca4dae1ffe"],[3.35447719078558471e-02,4.51292559224420020e-01]],[["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"176_2": [ +[[2,0,0,4,["15c8fc2702287"],[7.65193694196382057e-01,4.46448363236560397e-02]],[["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["15c8fc2702287"],[7.65193694196382057e-01,4.46448363236560397e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"177_2": [ +[[2,0,0,4,["83bc654d1d26"],[-1.90042408957403652e-01,2.18642135885252470e-01]],[["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["83bc654d1d26"],[-1.90042408957403736e-01,2.18642135885252470e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"178_2": [ +[[2,0,0,4,["52bf5a5e3b19"],[-1.49085311936600490e-01,-1.04327980771055845e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["52bf5a5e3b19"],[-1.49085311936600434e-01,-1.04327980771055817e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"179_2": [ +[[2,0,0,4,["b9340bef1753"],[3.97208318094576296e-01,-8.99525194479847967e-02]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["b9340bef1753"],[3.97208318094576296e-01,-8.99525194479847967e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"180_2": [ +[[2,0,0,4,["97baea4c51f6"],[3.30540893660752788e-01,-4.55021547802030857e-02]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["97baea4c51f6"],[3.30540893660752788e-01,-4.55021547802030857e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"181_2": [ +[[2,0,0,4,["70672d274e85"],[2.31764519065320751e-01,-8.59163499295613475e-02]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["70672d274e85"],[2.31764519065320751e-01,-8.59163499295613475e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"182_2": [ +[[2,0,0,4,["87212f36e2fd"],[2.47474352683915766e-01,-1.64488492113763124e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["87212f36e2fd"],[2.47474352683915766e-01,-1.64488492113763124e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"183_2": [ +[[2,0,0,4,["153b749632703"],[3.34958182959964934e-01,-6.67740004729959757e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["153b749632703"],[3.34958182959964934e-01,-6.67740004729959757e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"184_2": [ +[[2,0,0,4,["7992efb2a97f"],[2.30664589311394497e-01,-1.35154188920544538e-01]],[["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["7992efb2a97f"],[2.30664589311394497e-01,-1.35154188920544538e-01]],[["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"185_2": [ +[[2,0,0,4,["54a00e237615"],[1.01134818434504531e-01,1.56212308068941791e-01]],[["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["54a00e237615"],[1.01134818434504531e-01,1.56212308068941791e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"186_2": [ +[[2,0,0,5,["1475490dcd728"],[-6.52207274833143558e-01,3.04545261805029166e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["1475490dcd728"],[-6.52207274833143447e-01,3.04545261805029166e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"187_2": [ +[[2,0,0,5,["e0739584f549"],[-4.93174066302335345e-01,-1.98671004003119489e-02]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["e0739584f549"],[-3.62774888003299822e-01,3.34678565172150666e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"188_2": [ +[[2,0,0,5,["ff6e8c33f880"],[-3.58878856482448827e-01,4.32103516364948759e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["ff6e8c33f880"],[-5.59308999639420823e-01,5.17776535529942128e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"189_2": [ +[[2,0,0,5,["13bba37c2d878"],[-4.75931732998645329e-01,-5.05500011636129898e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["13bba37c2d878"],[-4.75931732998645329e-01,-5.05500011636129787e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"190_2": [ +[[2,0,0,5,["10afbc0d7d3f8"],[-5.74916153287765019e-01,-1.19000137032610837e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["10afbc0d7d3f8"],[5.74916153287765019e-01,1.19000137032610837e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"191_2": [ +[[2,0,0,5,["aa877de50d11"],[9.19688041513989640e-02,3.63545187387580682e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["aa877de50d11"],[9.19688041513989640e-02,3.63545187387580682e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"192_2": [ +[[2,0,0,5,["f28becba6127"],[-5.23433006549255286e-01,-1.02453506911434344e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["f28becba6127"],[-5.23433006549255286e-01,-1.02453506911434372e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"193_2": [ +[[2,0,0,5,["14408a61cf27e"],[7.06203128410970438e-01,9.49515656371057726e-02]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["14408a61cf27e"],[7.06203128410970438e-01,9.49515656371057726e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"194_2": [ +[[2,0,0,5,["9193d3e67e59"],[-3.12570337095678330e-01,-6.91509254540172702e-02]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["9193d3e67e59"],[-3.12570337095678330e-01,-6.91509254540172702e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"195_2": [ +[[2,0,0,5,["21de1ad05808"],[6.88310426744912357e-02,-2.84412978055301607e-02]],[["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["21de1ad05808"],[6.88310426744911663e-02,-2.84412978055301746e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"196_2": [ +[[2,0,0,5,["13c937f6171d8"],[6.94426385037577920e-01,4.90758060971135807e-02]],[["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["13c937f6171d8"],[6.94426385037577809e-01,4.90758060971135807e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"197_2": [ +[[2,0,0,5,["b1187afeff21"],[-7.31200644555927703e-02,-3.82511367200401076e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["b1187afeff21"],[-7.31200644555928259e-02,-3.82511367200401020e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"198_2": [ +[[2,0,0,5,["13a144ee9a0b3"],[6.83361396075679028e-01,-1.00195516815816232e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["13a144ee9a0b3"],[6.83361396075679028e-01,-1.00195516815816149e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"199_2": [ +[[2,0,0,5,["7c57ac72dcc8"],[1.83795260264601579e-01,2.02445938152155891e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["7c57ac72dcc8"],[1.83795260264601579e-01,2.02445938152155891e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"200_2": [ +[[2,0,0,5,["1094cb8e8edd5"],[5.82406518629958292e-01,3.40359089289274733e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1094cb8e8edd5"],[5.82406518629958292e-01,3.40359089289274941e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"201_2": [ +[[2,0,0,5,["1388aae817374"],[6.71584652702286400e-01,-1.46071276355808410e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["1388aae817374"],[6.71584652702286400e-01,-1.46071276355808410e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"202_2": [ +[[2,0,0,5,["10e25e8d65d29"],[5.93894868841928214e-01,1.40871832069399128e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["10e25e8d65d29"],[5.93894868841928214e-01,1.40871832069399405e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"203_2": [ +[[2,0,0,5,["1336db883176a"],[-6.75871030733485645e-01,1.52312887121328691e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1336db883176a"],[6.75871030733485645e-01,-1.52312887121328691e-02]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"204_2": [ +[[2,0,0,5,["9a5b7bf2abba"],[2.50606897799851680e-01,-2.28937961282927871e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["9a5b7bf2abba"],[2.50606897799851680e-01,-2.28937961282927760e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"205_2": [ +[[2,0,0,5,["e40eef5e1289"],[-4.72131367470933871e-01,-1.69114848107808385e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["e40eef5e1289"],[-4.72131367470933871e-01,-1.69114848107808358e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"206_2": [ +[[2,0,0,5,["dbb80ae9bce0"],[3.40073425033602272e-01,-3.43220661305683961e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["dbb80ae9bce0"],[3.40073425033602272e-01,-3.43220661305683961e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"207_2": [ +[[2,0,0,5,["a270b2c32cd1"],[-4.76745605670773065e-02,-3.54014130911348313e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["a270b2c32cd1"],[-4.76745605670773065e-02,-3.54014130911348313e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"208_2": [ +[[2,0,0,5,["69ae0665be9f"],[-9.72788377859966358e-02,2.11052152785522779e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["69ae0665be9f"],[-9.72788377859966774e-02,2.11052152785522806e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"209_2": [ +[[2,0,0,5,["2ec5869f41c9"],[-4.83279597968977459e-02,-9.07904284368540732e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["2ec5869f41c9"],[-4.83279597968976904e-02,-9.07904284368540454e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"210_2": [ +[[2,0,0,5,["d6183db707f9"],[-2.49427268437440453e-01,3.99296794456406812e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["d6183db707f9"],[-2.49427268437440425e-01,3.99296794456406756e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"211_2": [ +[[2,0,0,5,["dae7d0211923"],[2.27765165464560132e-01,-4.24085043735849820e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["dae7d0211923"],[2.27765165464560132e-01,-4.24085043735849820e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"212_2": [ +[[2,0,0,5,["8760a6755580"],[-2.71800970346517179e-01,-1.21443588767877739e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["8760a6755580"],[-2.71800970346517123e-01,-1.21443588767877739e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"213_2": [ +[[2,0,0,5,["15a890421b71d"],[7.53455899217183922e-01,1.14051105860730945e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["15a890421b71d"],[7.53455899217183922e-01,1.14051105860731028e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"214_2": [ +[[2,0,0,5,["d99cfebac351"],[1.80512394658346842e-01,-4.43184583959475076e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["d99cfebac351"],[1.80512394658346786e-01,-4.43184583959474965e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"215_2": [ +[[2,0,0,5,["d105fc8cc295"],[-4.11492734182259956e-01,-2.04815418446741754e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["d105fc8cc295"],[-4.11492734182259956e-01,-2.04815418446741726e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"216_2": [ +[[2,0,0,5,["75ee465b91e9"],[1.87795738084991226e-01,1.78846579858961546e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["75ee465b91e9"],[1.87795738084991226e-01,1.78846579858961546e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"217_2": [ +[[2,0,0,5,["f694ac28945f"],[5.16801514760298564e-01,-1.64124800523182124e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["f694ac28945f"],[5.16801514760298564e-01,-1.64124800523182124e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"218_2": [ +[[2,0,0,5,["ad3b7faff4ba"],[3.79932130093737053e-01,2.77213024506655220e-02]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["ad3b7faff4ba"],[3.79932130093737053e-01,2.77213024506655220e-02]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"219_2": [ +[[2,0,0,5,["f9f660c439b9"],[2.82818508824343728e-01,-4.71332446926504556e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["f9f660c439b9"],[2.82818508824343728e-01,-4.71332446926504556e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"220_2": [ +[[2,0,0,5,["104487057b159"],[5.65957575243319799e-01,8.54253120482190154e-02]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["104487057b159"],[5.65957575243319799e-01,8.54253120482190154e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"221_2": [ +[[2,0,0,5,["1153302935f26"],[5.99323545241185474e-01,1.11283265708223000e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["1153302935f26"],[5.99323545241185474e-01,1.11283265708223000e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"222_2": [ +[[2,0,0,5,["89556dadb812"],[3.01996152534359852e-01,-1.52652851160120506e-03]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["89556dadb812"],[3.01996152534359852e-01,-1.52652851160120506e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"223_2": [ +[[2,0,0,5,["c1c1af4c901d"],[1.52061298790588356e-01,3.98016910595145379e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["c1c1af4c901d"],[1.52061298790588273e-01,3.98016910595145268e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"224_2": [ +[[2,0,0,5,["12e88c769dd47"],[6.57118285780814992e-01,1.03889192712134260e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["12e88c769dd47"],[6.57118285780814992e-01,1.03889192712134260e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"225_2": [ +[[2,0,0,5,["5bc4236c0ee8"],[1.95494895637810528e-01,-5.00334283538539926e-02]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["5bc4236c0ee8"],[1.95494895637810528e-01,-5.00334283538539926e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"226_2": [ +[[2,0,0,5,["14b0519daf56b"],[7.12236169236653560e-01,-1.50292764723073374e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["14b0519daf56b"],[7.12236169236653560e-01,-1.50292764723073374e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"227_2": [ +[[2,0,0,5,["ae40b3a97ba7"],[3.79512444357680112e-01,-5.29309498859743613e-02]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["ae40b3a97ba7"],[3.79512444357680112e-01,-5.29309498859743613e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"228_2": [ +[[2,0,0,5,["11f321dfde3c4"],[6.31335723332307919e-01,1.64569455111803070e-02]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["11f321dfde3c4"],[6.31335723332307919e-01,1.64569455111803070e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"229_2": [ +[[2,0,0,5,["969385cfa4e9"],[2.51612980735732239e-01,2.15248286904643538e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["969385cfa4e9"],[2.51612980735732239e-01,2.15248286904643538e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"230_2": [ +[[2,0,0,5,["ab2491f639d8"],[2.59007053731821091e-01,2.73043027444273001e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["ab2491f639d8"],[2.59007053731821091e-01,2.73043027444273001e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"231_2": [ +[[2,0,0,5,["47a727d93b43"],[7.46786506454039101e-02,-1.38745462505332595e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["47a727d93b43"],[7.46786506454038546e-02,-1.38745462505332484e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"232_2": [ +[[2,0,0,5,["af16eb45e14e"],[2.33149100071817050e-01,3.06408997442138675e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["af16eb45e14e"],[2.33149100071817050e-01,3.06408997442138675e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"233_2": [ +[[2,0,0,5,["128d6c54f8d39"],[4.88947992188086045e-01,4.32458010077237498e-01]],[["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["128d6c54f8d39"],[-4.88947992188085989e-01,-4.32458010077237498e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"234_2": [ +[[2,0,0,5,["b186174c0802"],[1.19178341924095405e-01,3.71742177837583454e-01]],[["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["b186174c0802"],[-1.19178341924095405e-01,-3.71742177837583454e-01]],[["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"235_2": [ +[[2,0,0,5,["114380d9713f6"],[6.06967734361780198e-01,2.32249633296192082e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["114380d9713f6"],[-6.06967734361780198e-01,-2.32249633296192082e-02]],[["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"236_2": [ +[[2,0,0,5,["88382e59a43"],[-1.36783467595494590e-02,-1.27832256708707154e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["88382e59a43"],[-1.36783467595494590e-02,-1.27832256708707154e-02]],[["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"237_2": [ +[[2,0,0,5,["bdc1cd879a4a"],[4.05270505404124459e-01,9.93908461024567008e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["bdc1cd879a4a"],[4.05270505404124459e-01,9.93908461024567008e-02]],[["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"238_2": [ +[[2,0,0,5,["a67cda392fc6"],[2.30446127249941346e-01,2.84484374948287377e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["a67cda392fc6"],[2.30446127249941402e-01,2.84484374948287377e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"239_2": [ +[[2,0,0,5,["c56da834a4c5"],[4.28726988490881422e-01,6.84030863851283338e-02]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["c56da834a4c5"],[4.28726988490881422e-01,6.84030863851283338e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"240_2": [ +[[2,0,0,5,["14a08a6451cba"],[7.25384234528862026e-01,-2.31006162251913283e-02]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["14a08a6451cba"],[7.25384234528861915e-01,-2.31006162251912173e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"241_2": [ +[[2,0,0,5,["f1a8acc3ae6d"],[4.18177712093147025e-01,-3.27914196654446821e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["f1a8acc3ae6d"],[4.18177712093147025e-01,-3.27914196654446821e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"242_2": [ +[[2,0,0,5,["97cb69e1b0f0"],[2.36482861128238575e-01,2.35580510577849345e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["97cb69e1b0f0"],[2.36482861128238575e-01,2.35580510577849345e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"243_2": [ +[[2,0,0,5,["8823655d6835"],[2.34617761884093751e-01,1.85950606901673920e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["8823655d6835"],[2.34617761884093751e-01,1.85950606901673920e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"244_2": [ +[[2,0,0,5,["115e4786819d5"],[4.87811208148959674e-01,-3.68067441975952758e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["115e4786819d5"],[4.87811208148959674e-01,-3.68067441975952758e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"245_2": [ +[[2,0,0,5,["174b7d4f6db96"],[8.19047133559018148e-01,3.05250526434367453e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["174b7d4f6db96"],[8.19047133559018148e-01,3.05250526434367453e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"246_2": [ +[[2,0,0,5,["a99d8f31a8ee"],[3.67368361140557986e-01,-6.45042632985248776e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["a99d8f31a8ee"],[3.67368361140557986e-01,-6.45042632985248776e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"247_2": [ +[[2,0,0,5,["cd3bbc349e8e"],[4.46890675639322055e-01,6.30241818397130754e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["cd3bbc349e8e"],[4.46890675639322055e-01,6.30241818397130754e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"248_2": [ +[[2,0,0,5,["e4406617fe7a"],[-8.54977731111678241e-02,-4.94595128703668951e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["e4406617fe7a"],[-8.54977731111678241e-02,-4.94595128703668951e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"249_2": [ +[[2,0,0,5,["e104f1cf5166"],[3.90776887243563742e-01,-3.03550547353071243e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["e104f1cf5166"],[3.90776887243563742e-01,-3.03550547353071243e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"250_2": [ +[[2,0,0,5,["122d789993fdd"],[5.72102095987830683e-01,-2.85913746603571717e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["122d789993fdd"],[5.72102095987830683e-01,-2.85913746603571717e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"251_2": [ +[[2,0,0,5,["1167182b2845f"],[6.11227189412965055e-01,3.62893250159916150e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["1167182b2845f"],[6.11227189412965055e-01,3.62893250159916150e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"252_2": [ +[[2,0,0,5,["1c4556bb6b11"],[2.32551025515196352e-02,-5.76549530679505498e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["1c4556bb6b11"],[2.32551025515196352e-02,-5.76549530679505498e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"253_2": [ +[[2,0,0,5,["1853ab2ba5b23"],[8.53987415260228921e-01,5.75485271161446377e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["1853ab2ba5b23"],[8.53987415260228921e-01,5.75485271161446377e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"254_2": [ +[[2,0,0,5,["107b781180b54"],[5.63730994759005344e-01,-1.36065730084396402e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["107b781180b54"],[5.63730994759005344e-01,-1.36065730084396402e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"255_2": [ +[[2,0,0,5,["b10a2ace3c2d"],[2.97206469254688854e-01,-2.51463828588851857e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["b10a2ace3c2d"],[3.23449314041928393e-02,-3.87968488240810427e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"256_2": [ +[[2,0,0,5,["b864a7254e79"],[-1.92942672524420988e-02,4.05025579363758270e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["b864a7254e79"],[4.05025579363758270e-01,1.92942672524420850e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"257_2": [ +[[2,0,0,5,["39cc5b072d99"],[1.27096521122482126e-01,9.02676452859740852e-04]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["39cc5b072d99"],[1.27096521122482126e-01,9.02676452859740852e-04]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"258_2": [ +[[2,0,0,5,["baec574cd8db"],[3.97156598447644948e-01,-1.05959844895235772e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["baec574cd8db"],[3.55757048814208443e-01,2.05907199096416443e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"259_2": [ +[[2,0,0,5,["c68b1d42bb3d"],[3.69615379200130989e-01,-2.32390657127610339e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["c68b1d42bb3d"],[2.32390657127610312e-01,3.69615379200130989e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"260_2": [ +[[2,0,0,5,["ee7c75d20498"],[5.20568002638151728e-01,6.35825771405483242e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["ee7c75d20498"],[6.35825771405481854e-02,-5.20568002638151728e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"261_2": [ +[[2,0,0,5,["115dc4799a9d8"],[3.19299048757798187e-01,-5.20956379817592130e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["115dc4799a9d8"],[5.20956379817592130e-01,3.19299048757798132e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"262_2": [ +[[2,0,0,5,["7ad6e77a8314"],[2.34859344269101461e-01,-1.33452627058509299e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["7ad6e77a8314"],[-2.34859344269101461e-01,1.33452627058509299e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"263_2": [ +[[2,0,0,5,["84fa2e185712"],[7.76138462432450771e-02,-2.81931916957317175e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["84fa2e185712"],[7.76138462432450771e-02,-2.81931916957317175e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"264_2": [ +[[2,0,0,5,["1183a7b56ec03"],[2.04690365835898530e-01,-5.81239941724426501e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["1183a7b56ec03"],[2.04690365835898530e-01,-5.81239941724426501e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"265_2": [ +[[2,0,0,5,["124a3a9765653"],[1.40283368711057038e-01,-6.28044095298191385e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["124a3a9765653"],[1.40283368711057038e-01,-6.28044095298191385e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"266_2": [ +[[2,0,0,5,["59e38a9c2db6"],[7.08850968746857490e-02,1.84520452294496290e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["59e38a9c2db6"],[7.08850968746858601e-02,1.84520452294496290e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"267_2": [ +[[2,0,0,5,["6cba443d28b2"],[1.00588748296497360e-01,-2.16905734332313693e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["6cba443d28b2"],[1.00588748296497360e-01,-2.16905734332313693e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"268_2": [ +[[2,0,0,5,["91797ce110c8"],[-3.66434121099406401e-02,-3.17796341032214880e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["91797ce110c8"],[-3.66434121099406401e-02,-3.17796341032214880e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"269_2": [ +[[2,0,0,5,["1096cfb96489e"],[4.21963350136666249e-01,-4.03269317114523129e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["1096cfb96489e"],[4.21963350136666249e-01,-4.03269317114523129e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"270_2": [ +[[2,0,0,5,["b501ad94f079"],[3.97958415380206154e-01,-7.94036847476173313e-03]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["b501ad94f07a"],[-2.87013782539220719e-01,-2.75784405751972772e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"271_2": [ +[[2,0,0,5,["b45cd8220b05"],[2.08281454247819992e-01,-3.37531655413005560e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["b45cd8220b05"],[9.13936937136280714e-02,3.85948151101686510e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"272_2": [ +[[2,0,0,5,["15da8f7802bca"],[7.61699285785325086e-01,1.05059988064113013e-01]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["15da8f7802bca"],[7.61699285785325086e-01,1.05059988064113013e-01]],[["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"273_2": [ +[[2,0,0,5,["896173309bb5"],[2.11606115065608225e-01,-2.15613637578550121e-01]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["896173309bb5"],[2.11606115065608225e-01,-2.15613637578550121e-01]],[["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"274_2": [ +[[2,0,0,5,["ad596ed0739d"],[3.15097534088886078e-01,-2.14537663202741119e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["ad596ed0739d"],[3.15097534088886078e-01,-2.14537663202741119e-01]],[["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"275_2": [ +[[2,0,0,5,["15ec68ec484f3"],[7.58324924398884215e-01,1.41227914248868186e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["15ec68ec484f3"],[7.58324924398884215e-01,1.41227914248868186e-01]],[["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"276_2": [ +[[2,0,0,5,["e83492abdc48"],[4.91064671064072145e-01,1.39976328986903265e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["e83492abdc48"],[4.91064671064072145e-01,1.39976328986903265e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"277_2": [ +[[2,0,0,5,["105549cfe6912"],[5.24013167649439504e-01,-2.35919443101768184e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["105549cfe6912"],[5.24013167649439504e-01,-2.35919443101768184e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"278_2": [ +[[2,0,0,5,["103cab4804f77"],[3.55720758391652958e-01,4.47026847899015700e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["103cab4804f77"],[3.55720758391652903e-01,4.47026847899015756e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"279_2": [ +[[2,0,0,5,["85ee943ed0b5"],[2.94448062336271410e-01,-6.48519877012249113e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["85ee943ed0b5"],[2.94448062336271410e-01,-6.48519877012243562e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"280_2": [ +[[2,0,0,5,["a8f35730c997"],[-9.09360647727474602e-02,-3.60225400970475840e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["a8f35730c997"],[-9.09360647727474602e-02,-3.60225400970475840e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"281_2": [ +[[2,0,0,5,["4ebef4a73a0f"],[-9.54351719567366891e-02,-1.44491996975892267e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["4ebef4a73a0f"],[-9.54351719567367029e-02,-1.44491996975892323e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"282_2": [ +[[2,0,0,5,["f43d8af9c7ed"],[-2.48464709634996450e-01,4.76163106285670434e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["f43d8af9c7ed"],[-2.48464709634996506e-01,4.76163106285670490e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"283_2": [ +[[2,0,0,5,["c639a9e7ac15"],[3.90875681744391024e-01,-1.92942208151061112e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["c639a9e7ac15"],[3.90875681744391024e-01,-1.92942208151061112e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"284_2": [ +[[2,0,0,5,["8394c580edd5"],[2.78913530293827316e-01,7.70107512816880502e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["8394c580edd5"],[2.78913530293827316e-01,7.70107512816880502e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"285_2": [ +[[2,0,0,5,["1154acf745064"],[3.22500536643634206e-01,5.17508808170576873e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["1154acf745064"],[3.22500536643634317e-01,5.17508808170576984e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"286_2": [ +[[2,0,0,5,["3a84de545160"],[1.16012037475446250e-01,5.56862111373007118e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["3a84de545160"],[1.16012037475446250e-01,5.56862111373007118e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"287_2": [ +[[2,0,0,5,["12437bfa37eba"],[6.10399865234674932e-01,2.00844780464052297e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["12437bfa37eba"],[6.10399865234674932e-01,2.00844780464052297e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"288_2": [ +[[2,0,0,5,["12490bee30c23"],[6.00340568083249759e-01,2.31302630182385394e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["12490bee30c23"],[6.00340568083249759e-01,2.31302630182385394e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"289_2": [ +[[2,0,0,5,["12735e3cbf2e1"],[4.22727112724806897e-01,4.92676030300932766e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["12735e3cbf2e1"],[4.22727112724806897e-01,4.92676030300932710e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"290_2": [ +[[2,0,0,5,["6c8eb50b747d"],[3.01157301255247922e-02,2.36813115608356717e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["6c8eb50b747d"],[3.01157301255247922e-02,2.36813115608356717e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"291_2": [ +[[2,0,0,5,["8d412fccd840"],[-2.65251299857555356e-01,1.61641321695947804e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["8d412fccd840"],[-2.65251299857555356e-01,1.61641321695947804e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"292_2": [ +[[2,0,0,5,["e571f8a673da"],[4.82945288554238128e-01,1.46081931649882507e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["e571f8a673da"],[4.82945288554238128e-01,1.46081931649882507e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"293_2": [ +[[2,0,0,5,["1647054061429"],[7.78259587677143427e-01,9.31738792482876554e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1647054061429"],[7.78259587677143427e-01,9.31738792482876554e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"294_2": [ +[[2,0,0,5,["bf04a97caa48"],[2.80656856552988776e-01,3.12532657725039575e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["bf04a97caa48"],[2.80656856552988776e-01,3.12532657725039575e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"295_2": [ +[[2,0,0,5,["129e2a3d9155d"],[6.45775041726781018e-01,-1.09881367510670930e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["129e2a3d9155d"],[6.45775041726781018e-01,-1.09881367510670930e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"296_2": [ +[[2,0,0,5,["e683ff16ae54"],[4.63541640917594810e-01,-2.05148905913072666e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["e683ff16ae54"],[4.63541640917594810e-01,-2.05148905913072666e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"297_2": [ +[[2,0,0,5,["9a4f43df969e"],[3.18998828081322960e-01,-1.15693177143183681e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["9a4f43df969e"],[3.18998828081322960e-01,-1.15693177143183681e-01]],[["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"298_2": [ +[[2,0,0,5,["817bcb0901fe"],[1.84767402336579400e-01,-2.16648054588904293e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["817bcb0901fe"],[1.84767402336579400e-01,-2.16648054588904293e-01]],[["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"299_2": [ +[[2,0,0,5,["127243c05f762"],[5.94137594131935787e-01,-2.61211636904902011e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["127243c05f762"],[5.94137594131935787e-01,-2.61211636904902011e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"300_2": [ +[[2,0,0,5,["954ca763444f"],[2.29252435178615488e-01,2.35016365901719260e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["954ca763444f"],[2.29252435178615488e-01,2.35016365901719260e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"301_2": [ +[[2,0,0,5,["111dabb684d4e"],[5.54370008761274735e-01,2.35230692794123564e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["111dabb684d4e"],[5.54370008761274735e-01,2.35230692794123564e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"302_2": [ +[[2,0,0,5,["15e57c127b122"],[7.70376882517130546e-01,7.35008987215474141e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["15e57c127b122"],[7.70376882517130546e-01,7.35008987215474141e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"303_2": [ +[[2,0,0,5,["7929b4293bb6"],[2.24468726106586552e-01,-1.43541246156937086e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["7929b4293bb6"],[2.24468726106586552e-01,-1.43541246156937086e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"304_2": [ +[[2,0,0,5,["17802fb1e099e"],[8.23017313840636922e-01,7.96067344908044372e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["17802fb1e099e"],[8.23017313840636922e-01,7.96067344908044372e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"305_2": [ +[[2,0,0,5,["e80684549008"],[4.97084274753877287e-01,-1.15070583004943494e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["e80684549008"],[4.97084274753877287e-01,-1.15070583004943494e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"306_2": [ +[[2,0,0,5,["2107eb3ee705"],[5.99295409241799859e-02,4.10415422208472436e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["2107eb3ee705"],[5.99295409241799859e-02,4.10415422208472436e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"307_2": [ +[[2,0,0,5,["d4c5006e2655"],[2.74964046582914512e-01,3.78564786599469016e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["d4c5006e2655"],[2.74964046582914512e-01,3.78564786599469016e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"308_2": [ +[[2,0,0,5,["c76069f0208a"],[4.38161894320933443e-01,-1.54390935538678831e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["c76069f0208a"],[4.38161894320933443e-01,-1.54390935538678831e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"309_2": [ +[[2,0,0,5,["11752a3d62f21"],[5.66736769282352393e-01,-2.36847987603526433e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["11752a3d62f21"],[5.66736769282352393e-01,-2.36847987603526433e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"310_2": [ +[[2,0,0,5,["c9f11b203959"],[4.39660249689698968e-01,6.24600371635829210e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["c9f11b203959"],[4.39660249689698968e-01,6.24600371635829210e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"311_2": [ +[[2,0,0,5,["1390f54028dc6"],[5.26221686489527829e-01,4.43870500317500083e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1390f54028dc6"],[5.26221686489527829e-01,4.43870500317500083e-01]],[["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"312_2": [ +[[2,0,0,5,["a8ba2c809bc2"],[-5.00597762744430241e-02,3.67642605016467838e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["a8ba2c809bc2"],[-5.00597762744430241e-02,3.67642605016467838e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"313_2": [ +[[2,0,0,5,["4fdf3d8c996b"],[1.15943624204263435e-01,-1.31934250445826629e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["4fdf3d8c996b"],[1.15943624204263435e-01,-1.31934250445826629e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"314_2": [ +[[2,0,0,5,["1a30b274c96f8"],[8.19244882140859221e-01,4.21871175404052945e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1a30b274c96f8"],[8.19244882140859221e-01,4.21871175404052945e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"315_2": [ +[[2,0,0,5,["16b7ce5197e0f"],[6.96506263466168063e-01,3.92159073885752218e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["16b7ce5197e0f"],[6.96506263466168063e-01,3.92159073885752274e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"316_2": [ +[[2,0,0,5,["f879fae23d05"],[5.32333457953023004e-01,-1.23207686382011211e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["f879fae23d05"],[5.32333457953023004e-01,-1.23207686382011211e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"317_2": [ +[[2,0,0,5,["12f8513657753"],[6.40132395998260439e-01,-1.88987367493461650e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["12f8513657753"],[6.40132395998260550e-01,-1.88987367493461678e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"318_2": [ +[[2,0,0,5,["1325f3d234328"],[6.23514424910863507e-01,2.55200583413210558e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["1325f3d234328"],[6.23514424910863507e-01,2.55200583413210558e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"319_2": [ +[[2,0,0,5,["11494b0e171a8"],[5.70917527972745531e-01,2.09689624872550884e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["11494b0e171a8"],[5.70917527972745531e-01,2.09689624872550856e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"320_2": [ +[[2,0,0,5,["16c84d988542b"],[7.88589697366197440e-01,-1.43756114152983838e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["16c84d988542b"],[7.88589697366197440e-01,-1.43756114152983838e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"321_2": [ +[[2,0,0,5,["62f38ae5a326"],[1.05716912213446715e-01,-1.90189593643811661e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["62f38ae5a326"],[1.05716912213446687e-01,-1.90189593643811661e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"322_2": [ +[[2,0,0,5,["a783b5fb25b0"],[3.55353876559242721e-01,-9.70505320608241184e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["a783b5fb25b0"],[3.55353876559242721e-01,-9.70505320608241184e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"323_2": [ +[[2,0,0,5,["2dd4e8da917a"],[9.45703351453235641e-02,3.48432633536843173e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["2dd4e8da917a"],[9.45703351453235641e-02,3.48432633536843173e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"324_2": [ +[[2,0,0,5,["b5939e6a8576"],[-9.53128239407755040e-03,3.99177470745797125e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["b5939e6a8576"],[-9.53128239407755040e-03,3.99177470745797125e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"325_2": [ +[[2,0,0,5,["3c4e4a584761"],[3.13195031899654863e-02,1.28862471162990266e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["3c4e4a584761"],[3.13195031899654863e-02,1.28862471162990266e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"326_2": [ +[[2,0,0,5,["aef76c3a14d0"],[-2.09244084204985692e-01,3.22883298957599596e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["aef76c3a14d0"],[-2.09244084204985692e-01,3.22883298957599596e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"327_2": [ +[[2,0,0,5,["1411848db3565"],[2.33266699274118305e-01,6.66450967606861178e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1411848db3565"],[2.33266699274118305e-01,6.66450967606861178e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"328_2": [ +[[2,0,0,5,["cb49e3744535"],[2.66177400202655456e-01,3.59153380628332852e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["cb49e3744535"],[2.66177400202655456e-01,3.59153380628332852e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"329_2": [ +[[2,0,0,5,["bdef4c56f4e7"],[3.73312347104897801e-01,-1.87315015352137793e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["bdef4c56f4e7"],[3.73312347104897801e-01,-1.87315015352137793e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"330_2": [ +[[2,0,0,5,["ac904846d79c"],[3.62388837368699201e-01,1.12573778283943410e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["ac904846d79c"],[3.62388837368699201e-01,1.12573778283943410e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"331_2": [ +[[2,0,0,5,["18cbbc2e3fbd1"],[8.66821949316581186e-01,-9.87266404449247126e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["18cbbc2e3fbd1"],[8.66821949316581186e-01,-9.87266404449247126e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"332_2": [ +[[2,0,0,5,["1144466a08e90"],[5.33451015582336208e-01,-2.90702781514055431e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1144466a08e90"],[5.33451015582336208e-01,-2.90702781514055431e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"333_2": [ +[[2,0,0,5,["f27ea7684c0b"],[5.12727717457879262e-01,1.46518026116352534e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["f27ea7684c0b"],[5.12727717457879262e-01,1.46518026116352534e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"334_2": [ +[[2,0,0,5,["12aecc9cf47b1"],[6.05245802449478787e-01,2.56470741821137271e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["12aecc9cf47b1"],[6.05245802449478787e-01,2.56470741821137271e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"335_2": [ +[[2,0,0,5,["890814ebea1e"],[-8.43604732841863880e-02,2.89286119427338950e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["890814ebea1e"],[-8.43604732841863186e-02,2.89286119427338950e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"336_2": [ +[[2,0,0,5,["c67c401aa416"],[4.14713858953836612e-01,1.36095139842375534e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["c67c401aa416"],[4.14713858953836612e-01,1.36095139842375534e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"337_2": [ +[[2,0,0,5,["7b10d5fc94ce"],[-1.19766189533073192e-01,2.42680178004524738e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["7b10d5fc94ce"],[-1.19766189533073192e-01,2.42680178004524738e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"338_2": [ +[[2,0,0,5,["1604ba38690bc"],[7.74632536560120211e-01,-1.06626815517039952e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1604ba38690bc"],[7.74632536560120211e-01,-1.06626815517039952e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"339_2": [ +[[2,0,0,5,["ca6298b1605d"],[2.30740246483197353e-01,3.80562893658822066e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["ca6298b1605d"],[2.30740246483197353e-01,3.80562893658822066e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"340_2": [ +[[2,0,0,5,["799f3653b5b8"],[1.91532387683372413e-01,-1.86666937395930210e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["799f3653b5b8"],[1.91532387683372413e-01,-1.86666937395930210e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"341_2": [ +[[2,0,0,5,["1730f394112de"],[8.00609426568153260e-01,-1.57572118601791933e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["1730f394112de"],[8.00609426568153260e-01,-1.57572118601791933e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"342_2": [ +[[2,0,0,5,["e913aa998509"],[2.01628145536085018e-01,4.71216222244081773e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["e913aa998509"],[2.01628145536084963e-01,4.71216222244081662e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"343_2": [ +[[2,0,0,5,["3dc2f9e944ca"],[1.04428033746305243e-01,-8.68364457789309596e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["3dc2f9e944ca"],[1.04428033746305243e-01,-8.68364457789309596e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"344_2": [ +[[2,0,0,5,["f7d0d668f3fb"],[2.59619144812094693e-01,4.79135977415382164e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["f7d0d668f3fb"],[2.59619144812094693e-01,4.79135977415382164e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"345_2": [ +[[2,0,0,5,["13d04f87fd145"],[3.82241273867542974e-01,-5.82997535021226754e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["13d04f87fd145"],[3.82241273867542974e-01,-5.82997535021226754e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"346_2": [ +[[2,0,0,5,["b33f1dc610ce"],[3.93938094221216284e-01,-1.34409864945148200e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["b33f1dc610ce"],[3.93938094221216284e-01,-1.34409864945148200e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"347_2": [ +[[2,0,0,5,["141be77d7933b"],[5.01990703179850506e-01,4.98591542659184206e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["141be77d7933b"],[5.01990703179850506e-01,4.98591542659184206e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"348_2": [ +[[2,0,0,5,["1435fd86943d6"],[7.10903556811793291e-01,-1.70428913646716723e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["1435fd86943d6"],[7.10903556811793291e-01,-1.70428913646716723e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"349_2": [ +[[2,0,0,5,["10a88a580aac0"],[5.75303591381601254e-01,-1.12050720985816810e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["10a88a580aac0"],[3.27569246060992025e-01,-4.86032895352817740e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"350_2": [ +[[2,0,0,5,["cdbe149297a9"],[4.49425322105643787e-01,-5.20777098555109952e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["cdbe149297a9"],[3.54616194685346442e-01,2.80967191110351844e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"351_2": [ +[[2,0,0,5,["eedd1d7aa429"],[3.79141592090474711e-01,3.63533999617644099e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["eedd1d7aa429"],[3.79141592090474711e-01,3.63533999617644099e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"352_2": [ +[[2,0,0,5,["12cb218d6f6f5"],[5.87478944679632575e-01,-3.03484134189871746e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["12cb218d6f6f5"],[5.87478944679632575e-01,-3.03484134189871746e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"353_2": [ +[[2,0,0,5,["139b3c0a56720"],[6.08972599879950893e-01,3.24082257884106939e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["139b3c0a56720"],[6.08972599879950893e-01,3.24082257884106939e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"354_2": [ +[[2,0,0,5,["f33df2d81df6"],[5.15530509466754161e-01,-1.42620915297541617e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["f33df2d81df6"],[5.15530509466754161e-01,-1.42620915297541617e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"355_2": [ +[[2,0,0,5,["bddad50b3fa9"],[3.51842110214510617e-01,-2.24742807285711776e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["bddad50b3fa9"],[3.51842110214510617e-01,-2.24742807285711776e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"356_2": [ +[[2,0,0,5,["3d1c04bec9e2"],[-5.56133240481484215e-02,-1.22333303501722113e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["3d1c04bec9e2"],[-1.25827267029790330e-01,-4.71781499122490844e-02]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"357_2": [ +[[2,0,0,5,["92f031c2dfef"],[3.11529115227381137e-01,8.57704167193695521e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["92f031c2dfef"],[1.59635506626864321e-01,2.80933193201788833e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"358_2": [ +[[2,0,0,5,["9c661a7e30e5"],[9.11065391264202079e-02,3.31638042183137971e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["9c661a7e30e5"],[9.11065391264202079e-02,3.31638042183137971e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"359_2": [ +[[2,0,0,5,["9ac88bcd8c45"],[-8.55684303971464832e-02,3.29440918234883973e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["9ac88bcd8c45"],[-8.55684303971464832e-02,3.29440918234883973e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"360_2": [ +[[2,0,0,5,["e7ecbae158f3"],[1.71817866050253537e-01,4.80194383109897704e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["e7ecbae158f3"],[1.71817866050253537e-01,4.80194383109897704e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"361_2": [ +[[2,0,0,5,["ab2cef816fb1"],[2.75071292435199566e-01,2.56957244063775458e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["ab2cef816fb1"],[2.75071292435199621e-01,2.56957244063775514e-01]],[["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"362_2": [ +[[2,0,0,5,["125cd5c445de5"],[6.20640200763016292e-01,-1.79505779442521246e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["125cd5c445de5"],[6.20640200763016292e-01,-1.79505779442521246e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"363_2": [ +[[2,0,0,5,["10ab5de3adf03"],[5.70100073336423430e-01,1.37735239311612412e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["10ab5de3adf03"],[5.70100073336423430e-01,1.37735239311612412e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"364_2": [ +[[2,0,0,5,["c57f1a596fc0"],[-4.25480500485594049e-01,-8.70764113116769267e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["c57f1a596fc0"],[-4.25480500485594160e-01,-8.70764113116769128e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"365_2": [ +[[2,0,0,5,["bf3230eeda8f"],[-1.73730592395297451e-01,3.82872467675595352e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["bf3230eeda8f"],[-1.73730592395297423e-01,3.82872467675595463e-01]],[["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"366_2": [ +[[2,0,0,5,["16146c2906064"],[7.75742209222608947e-01,-4.17156691278905978e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["16146c2906064"],[7.75742209222608947e-01,-4.17156691278905978e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"367_2": [ +[[2,0,0,5,["11b72e9848dc6"],[1.80811862591422456e-01,-5.96509229568862098e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["11b72e9848dc6"],[1.80811862591422456e-01,-5.96509229568862098e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"368_2": [ +[[2,0,0,5,["41f717581a0"],[-7.97458654860203064e-03,4.31297288252953381e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["41f717581a0"],[-7.97458654860203064e-03,4.31297288252953381e-03]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"369_2": [ +[[2,0,0,5,["80c62554cd2d"],[2.52808954865317070e-01,-1.27580822531978944e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["80c62554cd2d"],[2.52808954865317070e-01,-1.27580822531978944e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"370_2": [ +[[2,0,0,5,["8a402509fb47"],[2.87020477429142828e-01,1.00225247336541728e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["8a402509fb47"],[2.87020477429142828e-01,1.00225247336541728e-01]],[["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"371_2": [ +[[2,0,0,5,["16d28c9753bfa"],[7.59850030898012285e-01,2.59667183915040622e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["16d28c9753bfa"],[7.59850030898012285e-01,2.59667183915040622e-01]],[["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"372_2": [ +[[2,0,0,5,["11166382ba6c5"],[4.89743913274354181e-01,3.48720597547398203e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["11166382ba6c5"],[3.48720597547398203e-01,-4.89743913274354181e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"373_2": [ +[[2,0,0,5,["143728859be76"],[6.55694881182301570e-01,2.75620886752581451e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["143728859be76"],[6.55694881182301570e-01,2.75620886752581451e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"374_2": [ +[[2,0,0,5,["11585634adde9"],[5.46126878412678818e-01,2.72362432933847098e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["11585634adde9"],[5.46126878412678818e-01,2.72362432933847098e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"375_2": [ +[[2,0,0,5,["e77fa54f0016"],[4.76140521819080786e-01,1.80120304774492979e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["e77fa54f0016"],[4.76140521819080786e-01,1.80120304774492979e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"376_2": [ +[[2,0,0,5,["8c451801232e"],[-2.62861901819542942e-01,1.61397637860377363e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["8c451801232e"],[-2.62861901819542942e-01,1.61397637860377363e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"377_2": [ +[[2,0,0,5,["118c4c4a8d47c"],[-2.36314452462874913e-02,-6.16964328450533284e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["118c4c4a8d47c"],[6.16964328450533062e-01,-2.36314452462874636e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"378_2": [ +[[2,0,0,5,["106cd8775b2bd"],[5.64509305701687891e-01,1.23728414061866868e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["106cd8775b2bd"],[5.64509305701687891e-01,1.23728414061866868e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"379_2": [ +[[2,0,0,5,["113b1ed5e7315"],[2.63716349568944852e-01,-5.45897981286095013e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["113b1ed5e7315"],[2.63716349568944852e-01,-5.45897981286095013e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"380_2": [ +[[2,0,0,5,["da0e20273118"],[3.98029857614267013e-01,2.67395859124701318e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["da0e20273118"],[3.98029857614267013e-01,2.67395859124701318e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"381_2": [ +[[2,0,0,5,["aa2515492604"],[-3.46372768684520826e-01,1.41477895160388917e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["aa2515492604"],[-3.46372768684520826e-01,1.41477895160388917e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"382_2": [ +[[2,0,0,5,["11033eeb43a4d"],[4.93183506202634070e-01,3.39217556318114399e-01]],[["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["11033eeb43a4d"],[4.93183506202634070e-01,3.39217556318114344e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"383_2": [ +[[2,0,0,5,["9b5a6c55c6d5"],[3.61074019131701618e-02,3.39711825305026582e-01]],[["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["9b5a6c55c6d5"],[3.61074019131700230e-02,3.39711825305026527e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"384_2": [ +[[2,0,0,5,["e00ef53563a2"],[-1.93058462193170799e-02,4.92331320345776591e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["e00ef53563a2"],[-1.93058462193170799e-02,4.92331320345776591e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"385_2": [ +[[2,0,0,5,["10b4ccb5e97e0"],[-2.97699648636477882e-02,5.87044511651803047e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["10b4ccb5e97e0"],[-2.97699648636477882e-02,5.87044511651803047e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"386_2": [ +[[2,0,0,5,["13078eb170e6d"],[2.72937955464804038e-01,6.11384517029867292e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["13078eb170e6d"],[2.72937955464804038e-01,6.11384517029867292e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"387_2": [ +[[2,0,0,5,["9f58176f522b"],[-4.80463772685037205e-02,3.47091753727751307e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["9f58176f522b"],[-4.80463772685037205e-02,3.47091753727751307e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"388_2": [ +[[2,0,0,5,["fa09b9de19a7"],[1.49915448612820523e-01,5.29007258977448824e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["fa09b9de19a7"],[1.49915448612820523e-01,5.29007258977448824e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"389_2": [ +[[2,0,0,5,["11b4e44cf3a31"],[5.25935831829514866e-01,3.33939213850840022e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["11b4e44cf3a31"],[5.25935831829514866e-01,3.33939213850840022e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"390_2": [ +[[2,0,0,5,["178b52c0e1466"],[7.65888589753566551e-01,3.15662801445984020e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["178b52c0e1466"],[7.65888589753566551e-01,3.15662801445984020e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"391_2": [ +[[2,0,0,5,["14f49e9ea5f2a"],[6.71175398447540150e-01,3.05198682801653298e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["14f49e9ea5f2a"],[6.71175398447540150e-01,3.05198682801653298e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"392_2": [ +[[2,0,0,5,["c249ebd55d09"],[-1.05456965400155256e-03,4.27244188561151539e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["c249ebd55d09"],[-1.05456965400155256e-03,4.27244188561151539e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"393_2": [ +[[2,0,0,5,["15bdd9bf423da"],[2.58394246666204086e-01,-7.20002341745896612e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["15bdd9bf423da"],[2.58394246666204086e-01,-7.20002341745896612e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"394_2": [ +[[2,0,0,5,["6f903f208872"],[1.60079999563910391e-01,1.85907293127985540e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["6f903f208872"],[1.60079999563910391e-01,1.85907293127985540e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"395_2": [ +[[2,0,0,5,["657b63609506"],[1.90855892937597721e-01,-1.15650203375893879e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["657b63609506"],[1.90855892937597721e-01,-1.15650203375893879e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"396_2": [ +[[2,0,0,5,["c7c29909aec7"],[-2.73844621660292664e-01,3.43472838291632498e-01]],[["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["c7c29909aec7"],[-2.73844621660292553e-01,3.43472838291632443e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"397_2": [ +[[2,0,0,5,["1271c8b9c290b"],[6.32403322623513287e-01,1.45641021934268228e-01]],[["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["1271c8b9c290b"],[5.50160432100649910e-01,-3.44192923643330428e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +] +,"398_2": [ +[[2,0,0,5,["13ff4e5107efe"],[6.13758926635496027e-01,-3.44008358841923378e-01]],[["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["13ff4e5107efe"],[6.13758926635496027e-01,-3.44008358841923489e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"399_2": [ +[[2,0,0,5,["5093bd482d46"],[-3.23937803150329273e-02,1.74204676766400807e-01]],[["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["5093bd482d46"],[-3.23937803150330383e-02,1.74204676766400862e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"400_2": [ +[[2,0,0,5,["c529b92771d3"],[4.33490935538011213e-01,-8.06653801064091680e-03]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["c529b92771d3"],[4.33490935538011213e-01,-8.06653801064091680e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"401_2": [ +[[2,0,0,5,["f033afd77bed"],[5.28204126844037614e-01,2.39758063368980534e-03]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["f033afd77bed"],[5.28204126844037614e-01,2.39758063368980534e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"402_2": [ +[[2,0,0,5,["707a0197100f"],[2.39278911409807615e-01,-6.26258767852330700e-02]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["707a0197100f"],[2.39278911409807615e-01,-6.26258767852330700e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"403_2": [ +[[2,0,0,5,["836b130f3451"],[2.88251368919985929e-01,2.06739930385457515e-02]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["836b130f3451"],[2.88251368919985929e-01,2.06739930385457515e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"404_2": [ +[[2,0,0,5,["4c744795fab2"],[1.56901653357389148e-01,6.03966300667504452e-02]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["4c744795fab2"],[1.56901653357389148e-01,6.03966300667504452e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"405_2": [ +[[2,0,0,5,["5abc95510270"],[1.99518071140309283e-01,-2.35853233764968251e-03]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["5abc95510270"],[1.99518071140309283e-01,-2.35853233764968251e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"406_2": [ +[[2,0,0,5,["899a9c61bcef"],[1.81241658735453365e-01,-2.42311290261701395e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["899a9c61bcef"],[1.81241658735453365e-01,-2.42311290261701395e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"407_2": [ +[[2,0,0,5,["66a56f073c1f"],[1.70777540091122615e-01,-1.47598098955674911e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["66a56f073c1f"],[1.70777540091122615e-01,-1.47598098955674911e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"408_2": [ +[[2,0,0,5,["619f756abb01"],[7.43970748021338807e-02,2.01371370470109917e-01]],[["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["619f756abb01"],[7.43970748021338391e-02,2.01371370470109723e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"409_2": [ +[[2,0,0,5,["15374f8fa2411"],[6.88277215350831417e-01,-2.88959193183824126e-01]],[["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["15374f8fa2411"],[6.91010491297242124e-01,2.82360481324290979e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +] +,"410_2": [ +[[3,0,0,2,["111bbffe3c7b5"],[-5.74975093703502083e-01,1.78172221835190686e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,3,["111bbffe3c7b5"],[-5.74975093703502083e-01,1.78172221835190686e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"411_2": [ +[[3,0,0,2,["5b776509ee0b"],[-1.99155767676185869e-01,2.81594711682185694e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,3,["5b776509ee0b"],[-1.99155767676185869e-01,2.81594711682185694e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"412_2": [ +[[3,0,0,2,["21e5b4d589aa"],[6.96129191885744569e-02,-2.66531754823464556e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,3,["21e5b4d589aa"],[6.96129191885744569e-02,-2.66531754823464556e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"413_2": [ +[[3,0,0,2,["d41b6b233f58"],[2.01016466024780127e-02,4.65995092144945722e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,3,["d41b6b233f58"],[2.01016466024780127e-02,4.65995092144945722e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"414_2": [ +[[3,0,0,2,["b446dc9345d1"],[-3.49558507664321283e-01,1.86997005870859101e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,3,["b446dc9345d1"],[-3.49558507664321283e-01,1.86997005870859101e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"415_2": [ +[[3,0,0,2,["7d3f19babd69"],[-1.58670000894187258e-01,2.25122126968615249e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,3,["7d3f19babd69"],[-1.58670000894187258e-01,2.25122126968615249e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"416_2": [ +[[3,0,0,2,["b4f0c5989cd7"],[-3.69420434074174797e-01,1.47806986594728212e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,3,["b4f0c5989cd7"],[-3.69420434074174797e-01,1.47806986594728212e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"417_2": [ +[[3,0,0,2,["d2666f6f5148"],[1.33537257162925971e-01,4.42985065121202781e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,3,["d2666f6f5148"],[1.33537257162925971e-01,4.42985065121202781e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"418_2": [ +[[3,0,0,2,["2a7ec8a93ad4"],[-2.45982571932514271e-02,-9.01524387598783561e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,3,["2a7ec8a93ad4"],[-2.45982571932514271e-02,-9.01524387598783561e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"419_2": [ +[[3,0,0,2,["3da156ad1c03"],[9.96467491256735477e-02,-9.18580705379442586e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,3,["3da156ad1c03"],[9.96467491256735477e-02,-9.18580705379442586e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"420_2": [ +[[3,0,0,3,["d5593206d58b"],[6.04977814760624816e-02,4.65241201126894821e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["d5593206d58b"],[6.04977814760624816e-02,4.65241201126894821e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"421_2": [ +[[3,0,0,3,["b41f426bd18c"],[1.06156097287653711e-01,3.81602295771194699e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["b41f426bd18c"],[1.06156097287653711e-01,3.81602295771194699e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"422_2": [ +[[3,0,0,3,["62dad5b04ae9"],[-2.17143026310736065e-01,-1.02339379935353636e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["62dad5b04ae9"],[-2.17143026310736065e-01,-1.02339379935353636e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"423_2": [ +[[3,0,0,3,["5ee292242b73"],[-2.08308904218334645e-01,-1.20027201971374953e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["5ee292242b73"],[-2.08308904218334645e-01,-1.20027201971374953e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"424_2": [ +[[3,0,0,3,["24720188aacc"],[-4.77631670635997804e-02,6.43565322442751775e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["24720188aacc"],[-4.77631670635997804e-02,6.43565322442751775e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"425_2": [ +[[3,0,0,3,["23de8c701f72"],[-2.74359154167698738e-02,7.39522092198648950e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["23de8c701f72"],[-2.74359154167698738e-02,7.39522092198648950e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"426_2": [ +[[3,0,0,3,["fbf446ce1630"],[-2.35255324807447513e-01,5.01627185206838688e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["fbf446ce1630"],[-2.35255324807447513e-01,5.01627185206838688e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"427_2": [ +[[3,0,0,3,["c26c7f7e51b2"],[-2.16042338277870144e-01,3.68942135707855445e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["c26c7f7e51b2"],[-2.16042338277870144e-01,3.68942135707855445e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"428_2": [ +[[3,0,0,3,["2634afab398e"],[8.14660584765941054e-02,2.05396679103038993e-02]],[["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["2634afab398e"],[8.14660584765941054e-02,2.05396679103038993e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"429_2": [ +[[3,0,0,3,["a725be013572"],[-1.18529105247065447e-01,3.47925284662899958e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["a725be013572"],[-1.18529105247065447e-01,3.47925284662899958e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"430_2": [ +[[3,0,0,3,["a737d793e13b"],[8.16284970734127147e-02,3.58541852033367914e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["a737d793e13b"],[8.16284970734127147e-02,3.58541852033367914e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"431_2": [ +[[3,0,0,3,["a2393d88643d"],[-3.55752890980030489e-01,-2.64318156583300545e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["a2393d88643d"],[-3.55752890980030489e-01,-2.64318156583300545e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"432_2": [ +[[3,0,0,3,["6fd33424b12c"],[2.00979954217902157e-01,1.41692356955793908e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["6fd33424b12c"],[2.00979954217902157e-01,1.41692356955793908e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"433_2": [ +[[3,0,0,3,["2da75f21b91a"],[5.06765541627188787e-02,8.66648339112948696e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["2da75f21b91a"],[5.06765541627188787e-02,8.66648339112948696e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"434_2": [ +[[3,0,0,3,["4fef07ce2d6a"],[1.33031457588137253e-01,-1.14890671181158061e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["4fef07ce2d6a"],[1.33031457588137253e-01,-1.14890671181158061e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"435_2": [ +[[3,0,0,3,["8c6260c776ba"],[-1.79680895883089220e-01,2.51029082930982694e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["8c6260c776ba"],[-1.79680895883089220e-01,2.51029082930982694e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"436_2": [ +[[3,0,0,3,["592ebe320c3c"],[-1.14699263711078331e-01,-1.59075487679639999e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["592ebe320c3c"],[-1.14699263711078331e-01,-1.59075487679639999e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"437_2": [ +[[3,0,0,3,["3a0d8b8358fb"],[1.07924355967368851e-01,6.81860117809075794e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["3a0d8b8358fb"],[1.07924355967368851e-01,6.81860117809075794e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"438_2": [ +[[3,0,0,3,["394d358580e3"],[-1.25424404236766984e-01,1.21086983199908127e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["394d358580e3"],[-1.25424404236766984e-01,1.21086983199908127e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"439_2": [ +[[3,0,0,3,["e301e0e5f865"],[3.82436778494765484e-02,4.97727320278498364e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,3,["e301e0e5f865"],[3.82436778494765484e-02,4.97727320278498364e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"440_2": [ +[[3,0,0,3,["963107d73b89"],[1.11161971475280522e-01,3.11005411464062242e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,3,["963107d73b89"],[1.11161971475280522e-01,3.11005411464062242e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"441_2": [ +[[3,0,0,3,["66304d189a7d"],[-2.22756713819820817e-01,2.96040815649485506e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,3,["66304d189a7d"],[-2.22756713819820817e-01,2.96040815649485506e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"442_2": [ +[[3,0,0,3,["ae88c72423bb"],[-3.29984295938272498e-01,1.96001559886483684e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["ae88c72423bb"],[-3.29984295938272498e-01,1.96001559886483684e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"443_2": [ +[[3,0,0,3,["a2fc95eed188"],[1.13269733307478013e-01,3.40042267206790427e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,3,["a2fc95eed188"],[1.13269733307478013e-01,3.40042267206790427e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"444_2": [ +[[3,0,0,3,["e11f5c07d635"],[-4.94316344959900955e-01,-2.69344758236798321e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["e11f5c07d635"],[-4.94316344959900955e-01,-2.69344758236798321e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"445_2": [ +[[3,0,0,3,["118f63c95ccff"],[-4.86977105120757869e-01,3.80238906815179245e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["118f63c95ccff"],[-4.86977105120757869e-01,3.80238906815179245e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"446_2": [ +[[3,0,0,3,["5c6940602063"],[1.97490998830421149e-01,4.78887651511206644e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["5c6940602063"],[1.97490998830421149e-01,4.78887651511206644e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"447_2": [ +[[3,0,0,3,["5934759db49d"],[-1.74405264042006736e-01,8.97941995879069088e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["5934759db49d"],[-1.74405264042006736e-01,8.97941995879069088e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"448_2": [ +[[3,0,0,3,["7f023a99d3b9"],[-2.46207570670473663e-01,1.31861991603200585e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["7f023a99d3b9"],[-2.46207570670473663e-01,1.31861991603200585e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"449_2": [ +[[3,0,0,3,["47a59aeea2f2"],[6.57227782424996132e-04,1.57551818205302230e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["47a59aeea2f2"],[6.57227782424996132e-04,1.57551818205302230e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"450_2": [ +[[3,0,0,3,["a538a3afb6b5"],[-3.32429322440012942e-01,1.46615371272518946e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["a538a3afb6b5"],[-3.32429322440012942e-01,1.46615371272518946e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"451_2": [ +[[3,0,0,3,["171faec60c24"],[-2.89082076644431585e-02,-4.18330757424249730e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["171faec60c24"],[-2.89082076644431585e-02,-4.18330757424249730e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"452_2": [ +[[3,0,0,3,["872fb7dcf36b"],[-2.65471951929724392e-01,1.33786670993767620e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["872fb7dcf36b"],[-2.65471951929724392e-01,1.33786670993767620e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"453_2": [ +[[3,0,0,3,["2905dbb818b6"],[1.80306464342604583e-02,-8.83899860347933664e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["2905dbb818b6"],[1.80306464342604583e-02,-8.83899860347933664e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"454_2": [ +[[3,0,0,3,["195bea07b262"],[-4.74798976789971641e-02,-2.92473541078646093e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["195bea07b262"],[-4.74798976789971641e-02,-2.92473541078646093e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"455_2": [ +[[3,0,0,3,["abdee89a01d0"],[-2.70316842343411079e-01,2.64146368899165873e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["abdee89a01d0"],[-2.70316842343411079e-01,2.64146368899165873e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"456_2": [ +[[3,0,0,3,["90f95a8f2ca8"],[-2.65814048454457552e-01,1.76003262824709572e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["90f95a8f2ca8"],[-2.65814048454457552e-01,1.76003262824709572e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"457_2": [ +[[3,0,0,3,["39c320aed839"],[-3.84966502855901976e-02,1.21046292966795116e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["39c320aed839"],[-3.84966502855901976e-02,1.21046292966795116e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"458_2": [ +[[3,0,0,3,["24448d77fbcf"],[-5.76642277721641089e-02,-5.50952760576257083e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["24448d77fbcf"],[-5.76642277721641089e-02,-5.50952760576257083e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"459_2": [ +[[3,0,0,3,["ada9ae2875ce"],[-3.51817949092432247e-01,1.48536216072578442e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,3,["ada9ae2875ce"],[-3.51817949092432247e-01,1.48536216072578442e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"460_2": [ +[[3,0,0,3,["6977ceefbd9e"],[1.83861155575178459e-01,1.41368375339353730e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,3,["6977ceefbd9e"],[1.83861155575178459e-01,1.41368375339353730e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"461_2": [ +[[3,0,0,3,["b09ef18ba56e"],[-2.51425955551788538e-01,2.96031126597252614e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,3,["b09ef18ba56e"],[-2.51425955551788538e-01,2.96031126597252614e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"462_2": [ +[[3,0,0,3,["523a4f1a8a1a"],[-1.80757700681644096e-01,-4.77568826478913522e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["523a4f1a8a1a"],[-1.80757700681644096e-01,-4.77568826478913522e-03]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"463_2": [ +[[3,0,0,3,["1225423c80360"],[8.03848298402298073e-02,6.33358724040033350e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,3,["1225423c80360"],[8.03848298402298073e-02,6.33358724040033350e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"464_2": [ +[[3,0,0,3,["da4523233b23"],[-2.02038029854792578e-01,4.35387586991673514e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["da4523233b23"],[-2.02038029854792578e-01,4.35387586991673514e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"465_2": [ +[[3,0,0,3,["af6ad61698d1"],[1.98820892645080710e-01,3.30561395000504965e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["af6ad61698d1"],[1.98820892645080710e-01,3.30561395000504965e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"466_2": [ +[[3,0,0,3,["98fd76dd3386"],[-2.00543419918255389e-01,2.70123413512021793e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["98fd76dd3386"],[-2.00543419918255389e-01,2.70123413512021793e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"467_2": [ +[[3,0,0,3,["7d57ab6587ee"],[-2.39585038287346813e-01,1.36277099582742978e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["7d57ab6587ee"],[-2.39585038287346813e-01,1.36277099582742978e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"468_2": [ +[[3,0,0,3,["68813b138d45"],[-8.12973591400122514e-02,2.14948103454316808e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,3,["68813b138d45"],[-8.12973591400122514e-02,2.14948103454316808e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"469_2": [ +[[3,0,0,3,["aa9b919b9b99"],[-1.37258288599612477e-01,3.49160279135849683e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["aa9b919b9b99"],[-1.37258288599612477e-01,3.49160279135849683e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"470_2": [ +[[3,0,0,3,["c7a20191e86c"],[-8.01800510478877515e-02,4.31612957250769425e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["c7a20191e86c"],[-8.01800510478877515e-02,4.31612957250769425e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"471_2": [ +[[3,0,0,3,["c1b79743c65d"],[-1.23774089732036352e-01,4.07610347694923991e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["c1b79743c65d"],[-1.23774089732036352e-01,4.07610347694923991e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"472_2": [ +[[3,0,0,3,["b742ef2901bb"],[1.70678971301897964e-01,3.65067992481097559e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["b742ef2901bb"],[1.70678971301897964e-01,3.65067992481097559e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"473_2": [ +[[3,0,0,3,["10136b771d9dc"],[2.37357902515230312e-02,5.65120741474965049e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["10136b771d9dc"],[2.37357902515230312e-02,5.65120741474965049e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"474_2": [ +[[3,0,0,3,["dd68c4723fec"],[2.13986612428346046e-01,4.37339503433865961e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["dd68c4723fec"],[2.13986612428346046e-01,4.37339503433865961e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"475_2": [ +[[3,0,0,3,["c81ccc9514be"],[2.49686100942151740e-01,3.62357066381314041e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["c81ccc9514be"],[2.49686100942151740e-01,3.62357066381314041e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"476_2": [ +[[3,0,0,3,["d05e1281e24b"],[2.97484149298133327e-01,3.48503833991555267e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["d05e1281e24b"],[2.97484149298133327e-01,3.48503833991555267e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"477_2": [ +[[3,0,0,3,["76472aa4a4b8"],[8.52048961834027396e-02,2.45743944564760397e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["76472aa4a4b8"],[8.52048961834027396e-02,2.45743944564760397e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"478_2": [ +[[3,0,0,3,["9fa8d6203e0c"],[8.18022453205142497e-02,3.41432402870713358e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["9fa8d6203e0c"],[8.18022453205142497e-02,3.41432402870713358e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"479_2": [ +[[3,0,0,3,["10b32b8088873"],[-5.81277494997931243e-01,8.57946076615589970e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["10b32b8088873"],[-5.81277494997931243e-01,8.57946076615589970e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"480_2": [ +[[3,0,0,3,["3abb1ad15ae7"],[7.24661557468053164e-02,-1.06904280011337310e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["3abb1ad15ae7"],[7.24661557468053164e-02,-1.06904280011337310e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"481_2": [ +[[3,0,0,3,["1a2b5e94415b"],[3.33981739816463785e-02,-4.68640151517116799e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["1a2b5e94415b"],[3.33981739816463785e-02,-4.68640151517116799e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"482_2": [ +[[3,0,0,3,["80807e725e3b"],[-2.79287484894467641e-01,-4.30027917786340447e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["80807e725e3b"],[-2.79287484894467641e-01,-4.30027917786340447e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"483_2": [ +[[3,0,0,3,["d3131c17e30a"],[-2.36613207796308567e-01,3.99320539181827305e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["d3131c17e30a"],[-2.36613207796308567e-01,3.99320539181827305e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"484_2": [ +[[3,0,0,3,["8901eb4553b6"],[-1.47594502161867258e-01,2.62653974591832928e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["8901eb4553b6"],[-1.47594502161867258e-01,2.62653974591832928e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"485_2": [ +[[3,0,0,3,["119e74f0dc714"],[-6.10659534335018184e-01,1.06707047794826398e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["119e74f0dc714"],[-6.10659534335018184e-01,1.06707047794826398e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"486_2": [ +[[3,0,0,3,["78b9640f4b84"],[-8.77258488305693307e-02,2.50561974231951812e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,3,["78b9640f4b84"],[-8.77258488305693307e-02,2.50561974231951812e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"487_2": [ +[[3,0,0,3,["a8f5544cfd05"],[-1.39089177194017671e-01,3.44526634603277260e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["a8f5544cfd05"],[-1.39089177194017671e-01,3.44526634603277260e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"488_2": [ +[[3,0,0,3,["9aa095c62fcf"],[-3.23026819869222548e-01,1.06176231286554651e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["9aa095c62fcf"],[-3.23026819869222548e-01,1.06176231286554651e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"489_2": [ +[[3,0,0,3,["a1d5e7f3a232"],[-3.24292585606396622e-01,1.46577705429305094e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["a1d5e7f3a232"],[-3.24292585606396622e-01,1.46577705429305094e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"490_2": [ +[[3,0,0,3,["f683c21865ce"],[-2.07611201442177984e-02,5.41693812577718981e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["f683c21865ce"],[-2.07611201442177984e-02,5.41693812577718981e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"491_2": [ +[[3,0,0,3,["7b93506f0032"],[-2.69066579260861971e-01,-3.80614368595512953e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["7b93506f0032"],[-2.69066579260861971e-01,-3.80614368595512953e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"492_2": [ +[[3,0,0,3,["bdc64ec3c688"],[-4.70211085122512751e-03,4.17292354061811699e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["bdc64ec3c688"],[-4.70211085122512751e-03,4.17292354061811699e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"493_2": [ +[[3,0,0,3,["c2953ca07023"],[-3.72788283897921513e-01,2.10049615187129890e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["c2953ca07023"],[-3.72788283897921513e-01,2.10049615187129890e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"494_2": [ +[[3,0,0,3,["aba2366ee661"],[-3.13464923867772916e-01,2.10215147461674967e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["aba2366ee661"],[-3.13464923867772916e-01,2.10215147461674967e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"495_2": [ +[[3,0,0,3,["8f86c57ce45f"],[1.72845061393954891e-01,2.64082011512307979e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["8f86c57ce45f"],[1.72845061393954891e-01,2.64082011512307979e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"496_2": [ +[[3,0,0,3,["c80db8c7ec75"],[-2.21956017867633693e-01,3.79825420631372035e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["c80db8c7ec75"],[-2.21956017867633693e-01,3.79825420631372035e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"497_2": [ +[[3,0,0,3,["c871d203cdea"],[2.49454741929836965e-01,3.63402560788615880e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["c871d203cdea"],[2.49454741929836965e-01,3.63402560788615880e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"498_2": [ +[[3,0,0,3,["2b345d1944ec"],[-5.76004794839044543e-02,-7.55557205763417172e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["2b345d1944ec"],[-5.76004794839044543e-02,-7.55557205763417172e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"499_2": [ +[[3,0,0,3,["593b56e4a236"],[1.95931780134016797e-01,-1.06827641920841793e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["593b56e4a236"],[1.95931780134016797e-01,-1.06827641920841793e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"500_2": [ +[[3,0,0,3,["6bbd9fcd7bd2"],[-2.36730087828260799e-01,9.59230030397999894e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["6bbd9fcd7bd2"],[-2.36730087828260799e-01,9.59230030397999894e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"501_2": [ +[[3,0,0,3,["58d0edb21237"],[-7.33304928914099152e-02,1.81019717956686726e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["58d0edb21237"],[-7.33304928914099152e-02,1.81019717956686726e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"502_2": [ +[[3,0,0,3,["6d75a5ce1554"],[2.28879592049538838e-01,7.45158108257092666e-02]],[["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["6d75a5ce1554"],[2.28879592049538838e-01,7.45158108257092666e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"503_2": [ +[[3,0,0,3,["7b010357e709"],[2.57751608412495392e-01,8.20254279623150589e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["7b010357e709"],[2.57751608412495392e-01,8.20254279623150589e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"504_2": [ +[[3,0,0,3,["61019169b7d3"],[1.13006184097870915e-02,2.13019187979462843e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["61019169b7d3"],[1.13006184097870915e-02,2.13019187979462843e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"505_2": [ +[[3,0,0,3,["a76c6c413d20"],[-1.87829033227077419e-01,3.16651384259500124e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["a76c6c413d20"],[-1.87829033227077419e-01,3.16651384259500124e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"506_2": [ +[[3,0,0,3,["49352422804a"],[-1.09378770182373117e-01,-1.18120750679028746e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["49352422804a"],[-1.09378770182373117e-01,-1.18120750679028746e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"507_2": [ +[[3,0,0,3,["412f7140eb7f"],[-1.40268601230812362e-01,2.95335900058326731e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["412f7140eb7f"],[-1.40268601230812362e-01,2.95335900058326731e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"508_2": [ +[[3,0,0,3,["ca7eaea68be1"],[-2.70299308174987929e-01,3.53867574712449340e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["ca7eaea68be1"],[-2.70299308174987929e-01,3.53867574712449340e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"509_2": [ +[[3,0,0,4,["bf635a46f2a0"],[-3.59844209246542479e-01,2.18268346653976208e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["bf635a46f2a0"],[-3.59844209246542479e-01,2.18268346653976208e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"510_2": [ +[[3,0,0,4,["3f61888ec778"],[-1.36672003058664060e-01,2.73223070439207044e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["3f61888ec778"],[-1.36672003058664060e-01,2.73223070439207044e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"511_2": [ +[[3,0,0,4,["df97acee4a63"],[-2.48170690955484941e-01,4.24459085119046287e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["df97acee4a63"],[-2.48170690955484941e-01,4.24459085119046287e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +] +,"512_2": [ +[[3,0,0,4,["10abb3fe06fb2"],[3.36675330798202888e-02,5.85581602017903324e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["10abb3fe06fb2"],[3.36675330798202888e-02,5.85581602017903324e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"513_2": [ +[[3,0,0,4,["98dfad111c22"],[-2.92007695552859325e-01,1.66564470088428812e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["98dfad111c21"],[-2.92007695552859214e-01,1.66564470088428840e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"514_2": [ +[[3,0,0,4,["82c792300f65"],[-2.43462687602373690e-01,1.53076417210652627e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["82c792300f64"],[-2.43462687602373662e-01,1.53076417210652627e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"515_2": [ +[[3,0,0,4,["a16653616b86"],[-1.97548514134233827e-02,3.54371513821482242e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["a16653616b86"],[-1.97548514134233827e-02,3.54371513821482242e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"516_2": [ +[[3,0,0,4,["11a572cbd185"],[-8.03135232398954901e-03,3.79643689678422214e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["11a572cbd185"],[-8.03135232398960452e-03,3.79643689678422352e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"517_2": [ +[[3,0,0,4,["3c52df3c09aa"],[-1.32347084379063396e-01,-9.00759521797317442e-03]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["3c52df3c09aa"],[-1.32347084379063451e-01,-9.00759521797314666e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"518_2": [ +[[3,0,0,4,["532256b47841"],[1.58267060051784036e-01,9.15011407407142208e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["532256b47841"],[1.58267060051784036e-01,9.15011407407141791e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"519_2": [ +[[3,0,0,4,["6b3417039285"],[-1.99517366823438458e-01,1.25568916369010186e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["6b3417039285"],[-1.99517366823438513e-01,1.25568916369010242e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"520_2": [ +[[3,0,0,4,["509d3f87de2e"],[-1.53351715210270190e-01,8.89316050482200499e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["509d3f87de2e"],[-1.53351715210270190e-01,8.89316050482200499e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"521_2": [ +[[3,0,0,4,["aa755f84cace"],[-2.92483083504009256e-01,2.34436145723047190e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["aa755f84cace"],[-2.92483083504009256e-01,2.34436145723047190e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"522_2": [ +[[3,0,0,4,["c3065294e62b"],[-6.31199136903289881e-02,4.24193439841136333e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["c3065294e62b"],[-6.31199136903289743e-02,4.24193439841136277e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"523_2": [ +[[3,0,0,4,["ae6f3086ae70"],[6.01845948436784614e-02,3.78834248155974551e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["ae6f3086ae70"],[6.01845948436784337e-02,3.78834248155974496e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"524_2": [ +[[3,0,0,4,["ae76e7a19096"],[-1.02320339595116189e-01,3.69755282061250690e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["ae76e7a19096"],[-1.02320339595116189e-01,3.69755282061250690e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"525_2": [ +[[3,0,0,4,["7b4ceec0bad6"],[1.48943847549752761e-01,2.26567899524673849e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["7b4ceec0bad6"],[1.48943847549752706e-01,2.26567899524673849e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"526_2": [ +[[3,0,0,4,["a3756ce9280a"],[-2.81914550807259690e-01,2.22997994804621069e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a3756ce9280a"],[-2.81914550807259690e-01,2.22997994804621097e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"527_2": [ +[[3,0,0,4,["7b07a1f4d8d9"],[-4.03308845961284496e-02,2.67522422189683140e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["7b07a1f4d8d9"],[-4.03308845961284843e-02,2.67522422189683140e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"528_2": [ +[[3,0,0,4,["b61d1064ecac"],[3.63808380475418303e-01,1.67395333110076538e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["b61d1064ecac"],[3.63808380475418247e-01,1.67395333110076483e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"529_2": [ +[[3,0,0,4,["9142c5f5154b"],[-2.86089101637524434e-01,1.42090804273834581e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["9142c5f5154b"],[-2.86089101637524545e-01,1.42090804273834553e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"530_2": [ +[[3,0,0,4,["1183e15f45ac2"],[-9.70127738151228269e-02,6.08575954670566910e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["1183e15f45ac2"],[-9.70127738151228547e-02,6.08575954670566910e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"531_2": [ +[[3,0,0,4,["b43ac1753d0c"],[-1.57888391405482553e-01,3.63521454310407721e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["b43ac1753d0c"],[-1.57888391405482498e-01,3.63521454310407721e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"532_2": [ +[[3,0,0,4,["d971fdebcff0"],[6.46898978658292378e-02,4.73771164420525137e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["d971fdebcff0"],[6.46898978658291962e-02,4.73771164420525082e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"533_2": [ +[[3,0,0,4,["d61e64697422"],[-2.71312614286361442e-01,3.84826081054419566e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["d61e64697422"],[-2.71312614286361553e-01,3.84826081054419566e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"534_2": [ +[[3,0,0,4,["bf905a9c3e6e"],[-3.01886067194276686e-01,2.93801390490711134e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["bf905a9c3e6e"],[-3.01886067194276686e-01,2.93801390490711134e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"535_2": [ +[[3,0,0,4,["74719861cbee"],[-1.44032128509325064e-01,2.11713807326364967e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["74719861cbee"],[-1.44032128509325091e-01,2.11713807326364967e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"536_2": [ +[[3,0,0,4,["b813c613fc29"],[-2.75449549201705723e-01,2.96618607930553058e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["b813c613fc29"],[-2.75449549201705779e-01,2.96618607930553113e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"537_2": [ +[[3,0,0,4,["115eb3c724da5"],[-6.11071184222123781e-02,6.08087469456539909e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["115eb3c724da5"],[-6.11071184222123712e-02,6.08087469456539909e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"538_2": [ +[[3,0,0,4,["ae31d5de8dbb"],[2.47741984724612702e-01,2.92159955504475710e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["ae31d5de8dbb"],[2.47741984724612674e-01,2.92159955504475710e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"539_2": [ +[[3,0,0,4,["bf74f8475938"],[3.48614300348527306e-01,2.36060158849953794e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["bf74f8475938"],[3.48614300348527251e-01,2.36060158849953738e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"540_2": [ +[[3,0,0,4,["81da91266523"],[3.44418397764291312e-02,2.83466762062536959e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["81da91266523"],[3.44418397764291798e-02,2.83466762062536959e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"541_2": [ +[[3,0,0,4,["96260d1558ad"],[-8.04930417315605079e-02,3.20218566544682615e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["96260d1558ad"],[-8.04930417315605634e-02,3.20218566544682670e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"542_2": [ +[[3,0,0,4,["5bedd76b1f05"],[7.11116937350680378e-02,1.89233799871783792e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["5bedd76b1f05"],[7.11116937350679962e-02,1.89233799871783848e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"543_2": [ +[[3,0,0,4,["6062ac3afdbe"],[-2.03793337681859449e-01,5.82468843868667874e-02]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["6062ac3afdbe"],[-2.03793337681859477e-01,5.82468843868668151e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"544_2": [ +[[3,0,0,4,["b0751316a42f"],[-3.85639711917845573e-01,4.30372890940129704e-02]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b0751316a42f"],[-3.85639711917845740e-01,4.30372890940129704e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"545_2": [ +[[3,0,0,4,["817e9ee749f7"],[2.96963964123358737e-02,2.83208984884764758e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["817e9ee749f7"],[2.21257516984942171e-01,1.79260470425009033e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"546_2": [ +[[3,0,0,4,["d0a4292d4bc1"],[2.29795847615276772e-01,3.97111700145953317e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d0a4292d4bc1"],[-1.18310173924449757e-01,4.43290578198995200e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"547_2": [ +[[3,0,0,4,["f6c52a7bb8c3"],[2.55970660956130192e-01,4.78488969182266910e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["f6c52a7bb8c3"],[2.55970660956130192e-01,4.78488969182266910e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"548_2": [ +[[3,0,0,4,["c6223c875a2d"],[-2.61491082600318225e-01,3.48507543583023327e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["c6223c875a2d"],[-2.61491082600318225e-01,3.48507543583023327e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"549_2": [ +[[3,0,0,4,["c10b10ae2954"],[-3.64528918225009324e-01,2.17541876402429918e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["c10b10ae2954"],[-3.64528918225009324e-01,2.17541876402429918e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"550_2": [ +[[3,0,0,4,["10cbf890d3fa0"],[9.48467348447331049e-02,5.83322898943032131e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["10cbf890d3fa0"],[9.48467348447331049e-02,5.83322898943032131e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"551_2": [ +[[3,0,0,4,["4203b89444e7"],[1.44496328663875406e-01,1.39432246260884560e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["4203b89444e7"],[1.44496328663875406e-01,1.39432246260884560e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"552_2": [ +[[3,0,0,4,["71f6934ce425"],[-1.26466084450968352e-01,-2.16357449512330241e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["71f6934ce425"],[-2.42412845615785133e-01,-6.35627938050045416e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"553_2": [ +[[3,0,0,4,["6db901b65601"],[-1.35509974040112890e-01,1.99635675249688060e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6db901b65601"],[-2.36983761297986595e-01,4.53437181736329464e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"554_2": [ +[[3,0,0,4,["b8fe23d76484"],[1.91041053146769058e-02,4.06354498471215242e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b8fe23d76484"],[1.91041053146769058e-02,4.06354498471215242e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"555_2": [ +[[3,0,0,4,["a00db2df6f5f"],[-3.51852811567764545e-01,-8.74187963654796119e-03]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a00db2df6f5f"],[-3.51852811567764545e-01,-8.74187963654796119e-03]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"556_2": [ +[[3,0,0,4,["58ac0fe5c54b"],[-1.11867343832247779e-01,-1.59710977797332038e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["58ac0fe5c54b"],[-1.92034872847537119e-01,-3.38305580133180309e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"557_2": [ +[[3,0,0,4,["728599be82f8"],[-1.85887946808360904e-01,1.69903439458001543e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["728599be82f8"],[-2.51582501916707169e-01,-1.13027535413652291e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"558_2": [ +[[3,0,0,4,["c4cd7ea88935"],[-1.35968318587251752e-01,4.10859745387865294e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["c4cd7ea88935"],[-1.35968318587251752e-01,4.10859745387865294e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"559_2": [ +[[3,0,0,4,["91dfd989b8b1"],[8.20879438497318370e-04,3.20780176514907645e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["91dfd989b8b1"],[8.20879438497318370e-04,3.20780176514907645e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"560_2": [ +[[3,0,0,4,["bb5ef7421de0"],[-3.08711365991558129e-01,2.72889295110122831e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["bb5ef7421de0"],[-3.08711365991558129e-01,2.72889295110122831e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"561_2": [ +[[3,0,0,4,["98b7ee4170fd"],[2.34007321183958422e-01,2.40880388504391946e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["98b7ee4170fd"],[2.34007321183958422e-01,2.40880388504391946e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"562_2": [ +[[3,0,0,4,["39d08cad1804"],[-9.96474535135500050e-02,-7.89549524316289497e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["39d08cad1804"],[-9.96474535135500050e-02,-7.89549524316289497e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"563_2": [ +[[3,0,0,4,["c7fcacb9bad7"],[2.82903134109149454e-02,4.38865201323854148e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["c7fcacb9bad7"],[2.82903134109149454e-02,4.38865201323854148e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"564_2": [ +[[3,0,0,4,["393e0a5e6980"],[1.25331701587068856e-01,-1.17066861844281611e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["393e0a5e6980"],[1.25331701587068856e-01,-1.17066861844281611e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"565_2": [ +[[3,0,0,4,["366ab5294f71"],[-1.18226193992953310e-01,1.84934656275931239e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["366ab5294f71"],[-7.05216885333821430e-02,9.66753984392049737e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"566_2": [ +[[3,0,0,4,["291aeea4ffea"],[7.59777599004465287e-02,4.89690412430112409e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["291aeea4ffea"],[1.90980481138321168e-02,8.83507303761060236e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"567_2": [ +[[3,0,0,4,["d9c162d8105"],[-1.82892009976067249e-02,2.36895520580345520e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d9c162d8105"],[-1.82892009976067249e-02,2.36895520580345520e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"568_2": [ +[[3,0,0,4,["328cc6b8d439"],[3.54347582069452979e-02,1.05361365055808703e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["328cc6b8d439"],[3.54347582069452979e-02,1.05361365055808703e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"569_2": [ +[[3,0,0,4,["4b137e9142e8"],[-1.35587779545509879e-01,9.41915540412732732e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["4b137e9142e8"],[-1.35587779545509879e-01,9.41915540412732732e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"570_2": [ +[[3,0,0,4,["9b9773229b53"],[-3.03244104075266252e-01,1.58459226807567299e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["9b9773229b53"],[-3.03244104075266252e-01,1.58459226807567299e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"571_2": [ +[[3,0,0,4,["92050ae4f2bf"],[-2.73130077429764140e-01,1.68836095401141528e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["92050ae4f2bf"],[-7.37469819293869733e-02,3.12517277863799015e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"572_2": [ +[[3,0,0,4,["d653f888ebba"],[-3.41788727436911494e-02,4.70071346288208569e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["d653f888ebba"],[-3.56558749292258059e-01,3.08222523911505952e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"573_2": [ +[[3,0,0,4,["22d9e2e86d29"],[-7.33148256701947887e-02,-2.23245111283657538e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["22d9e2e86d29"],[-7.33148256701947887e-02,-2.23245111283657538e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"574_2": [ +[[3,0,0,4,["ef3c71b515a9"],[-5.26085254405857516e-01,-7.36211599147024165e-04]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["ef3c71b515a9"],[-3.72519031086776975e-01,3.71477870658486808e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"575_2": [ +[[3,0,0,4,["e5ec0b243a6c"],[-3.05309891698171021e-01,4.03015133620396371e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["e5ec0b243a6c"],[-3.05309891698171021e-01,4.03015133620396371e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"576_2": [ +[[3,0,0,4,["857b58f6fc8d"],[-2.86821386604654283e-01,6.23950463345968875e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["857b58f6fc8d"],[-2.46933307833121701e-01,-1.58693387081837167e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"577_2": [ +[[3,0,0,4,["f316843ddf4f"],[-1.15990015122439380e-01,5.21820376288812504e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["f316843ddf4f"],[-1.15990015122439380e-01,5.21820376288812504e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"578_2": [ +[[3,0,0,4,["5bfe95c6c66a"],[-1.96801843563060130e-01,-4.68349146360996227e-02]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["5bfe95c6c66a"],[-1.96801843563060130e-01,-4.68349146360996227e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"579_2": [ +[[3,0,0,4,["57bcb8b96ffe"],[-1.91815543947805756e-01,2.07640813151304393e-02]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["57bcb8b96ffe"],[-1.91815543947805756e-01,2.07640813151304393e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"580_2": [ +[[3,0,0,4,["d48681fc8a8a"],[-1.73323595729951568e-02,4.67026833329025171e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d48681fc8a8a"],[3.17982011855004743e-01,3.42493669831061665e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"581_2": [ +[[3,0,0,4,["662efa8c30f1"],[7.48939239490625380e-02,2.11855493295608099e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["662efa8c30f1"],[-9.68464544468940203e-02,2.02762457434997323e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"582_2": [ +[[3,0,0,4,["a7ba1fcf385b"],[-1.42906201245618120e-01,3.40025845554796424e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a7ba1fcf385b"],[-1.42906201245618120e-01,3.40025845554796424e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"583_2": [ +[[3,0,0,4,["4f426b2b03a7"],[-1.57681657497099059e-01,7.42608464025729248e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["4f426b2b03a7"],[-1.57681657497099059e-01,7.42608464025729248e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"584_2": [ +[[3,0,0,4,["c5ef78b619b5"],[-4.30000357970833913e-01,6.74906429721634782e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["c5ef78b619b5"],[-2.56333077721562608e-01,3.51779260346076650e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"585_2": [ +[[3,0,0,4,["875677b002fb"],[-2.28254339586417970e-01,1.90976957406265968e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["875677b002fb"],[-2.96441292989158334e-01,-2.63590897244680711e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"586_2": [ +[[3,0,0,4,["a9e3302b050e"],[-3.69526386259364958e-01,-5.49280815520894472e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["a9e3302b050e"],[-3.69526386259364958e-01,-5.49280815520894472e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"587_2": [ +[[3,0,0,4,["7597212bbd08"],[-2.57464454644592333e-01,-2.40352907424104811e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["7597212bbd08"],[-1.99050378865436250e-01,1.65059344721938894e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"588_2": [ +[[3,0,0,4,["bcf979e28e2c"],[-2.64769248484177600e-01,3.20291777966144053e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["bcf979e28e2c"],[-4.13700619210984555e-01,3.92603571053284639e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"589_2": [ +[[3,0,0,4,["5b0cc64aa487"],[-7.63122136670982276e-03,2.00075367917497582e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["5b0cc64aa487"],[1.36078561025719802e-01,1.46870737779992155e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"590_2": [ +[[3,0,0,4,["4717e8d09fc3"],[-9.27911216812921102e-03,-1.56060414128025904e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["4717e8d09fc3"],[1.03790053967233231e-01,-1.16912700242182782e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"591_2": [ +[[3,0,0,4,["cf09d1675a22"],[1.75975941702669003e-01,4.19897968330121607e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["cf09d1675a22"],[1.75975941702669003e-01,4.19897968330121607e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"592_2": [ +[[3,0,0,4,["94fd51c7e8be"],[-2.16006133683663920e-01,-2.46340638719014321e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["94fd51c7e8bd"],[-3.26928538025647031e-01,-2.14497342144337744e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"593_2": [ +[[3,0,0,4,["aafbc2cda6b7"],[-2.99069750684159530e-01,2.27883084103723960e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["aafbc2cda6b7"],[-3.72611922843986809e-01,-5.03365746690918464e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"594_2": [ +[[3,0,0,4,["91db47791dee"],[-2.27441342584506850e-01,2.26154470258517759e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["91db47791dee"],[-9.09956148228210915e-04,3.20740675179126744e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"595_2": [ +[[3,0,0,4,["7254e743c74f"],[2.27538651690676053e-01,1.06944637132395770e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["7254e743c74f"],[2.27538651690676053e-01,1.06944637132395770e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"596_2": [ +[[3,0,0,4,["79b2b8d7d3d6"],[-1.28320152847929220e-01,2.34846354496000359e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["79b2b8d7d3d6"],[-2.56797500042726778e-01,7.53253995593966275e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"597_2": [ +[[3,0,0,4,["3cb72f416cdb"],[-1.09715952862782018e-01,7.60831691166354573e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3cb72f416cdb"],[-1.09715952862782018e-01,7.60831691166354573e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"598_2": [ +[[3,0,0,4,["94e058019bbd"],[3.22384649560094605e-01,5.69865364530553198e-02]],[["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["94e058019bbd"],[3.22384649560094605e-01,5.69865364530553198e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"599_2": [ +[[3,0,0,4,["4ba3449f55bc"],[1.65718823412197458e-01,1.42364449779965249e-02]],[["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["4ba3449f55bc"],[1.65718823412197458e-01,1.42364449779965249e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"600_2": [ +[[3,0,0,4,["5b6ae1057b3e"],[-1.14660938892052255e-01,1.65123009479761773e-01]],[["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["5b6ae1057b3e"],[-1.14660938892052255e-01,1.65123009479761773e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"601_2": [ +[[3,0,0,4,["612c2513b4d3"],[-2.06177439460230399e-01,5.61418794147827763e-02]],[["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["612c2513b4d3"],[-2.06177439460230399e-01,5.61418794147827763e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"602_2": [ +[[3,0,0,4,["553f626f5e38"],[-1.27334679977881116e-01,1.37577879167296580e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["553f626f5e38"],[-1.27334679977881116e-01,1.37577879167296580e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"603_2": [ +[[3,0,0,4,["7758fdf4b22a"],[-2.51572824194669031e-01,7.47674620677524771e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["7758fdf4b22a"],[-2.51572824194669031e-01,7.47674620677524771e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"604_2": [ +[[3,0,0,4,["af4a0d8914bf"],[2.34482562223947699e-01,3.05943348151188010e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["af4a0d8914bf"],[2.34482562223947699e-01,3.05943348151188010e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"605_2": [ +[[3,0,0,4,["6dfb9dd151fb"],[1.74144354652262551e-01,-1.67831875079521214e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6dfb9dd151fb"],[1.74144354652262606e-01,-1.67831875079521214e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"606_2": [ +[[3,0,0,4,["7ec415a9e68f"],[2.76228049855701374e-01,-3.74955743117499907e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["7ec415a9e68f"],[2.76228049855701430e-01,-3.74955743117499768e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"607_2": [ +[[3,0,0,4,["999c15549a33"],[-2.44208184409749340e-01,2.33378078391940635e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["999c15549a33"],[-2.44208184409749340e-01,2.33378078391940635e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"608_2": [ +[[3,0,0,4,["98dc6c5c60fd"],[-3.27167596084304790e-01,-7.71673234808177844e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["98dc6c5c60fd"],[-3.27167596084304790e-01,-7.71673234808177844e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"609_2": [ +[[3,0,0,4,["5a99e04157b0"],[1.70515749125022681e-01,1.03046190339450922e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["5a99e04157b0"],[1.93437502469873152e-01,-4.77081825409421678e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"610_2": [ +[[3,0,0,4,["83ef47760d03"],[2.49848366703816327e-01,1.47477877432442395e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["83ef47760d04"],[7.23868671571732403e-02,2.80952081572130363e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"611_2": [ +[[3,0,0,4,["9e30116f7522"],[-1.39588179954610508e-01,3.18623177284546699e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9e30116f7522"],[-1.39588179954610508e-01,3.18623177284546699e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"612_2": [ +[[3,0,0,4,["9947f76c5161"],[-3.05614598482902011e-02,3.35680408172272182e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["9947f76c5161"],[-3.05614598482902011e-02,3.35680408172272182e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"613_2": [ +[[3,0,0,4,["9b2bf004bb24"],[-2.52482755029475425e-01,2.29537924707074459e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["9b2bf004bb24"],[-2.52482755029475425e-01,2.29537924707074459e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"614_2": [ +[[3,0,0,4,["3e09d2b8a97d"],[3.83225985950717968e-02,1.30930659572449648e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["3e09d2b8a97d"],[3.83225985950717968e-02,1.30930659572449648e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"615_2": [ +[[3,0,0,4,["9565e5341fcb"],[1.49411002606410576e-01,2.92588690628397707e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["9565e5341fcb"],[1.49411002606410603e-01,2.92588690628397763e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"616_2": [ +[[3,0,0,4,["56d8c2d616af"],[-1.69363267804034545e-01,8.82534194802292449e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["56d8c2d616af"],[-1.69363267804034545e-01,8.82534194802292449e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"617_2": [ +[[3,0,0,4,["6f355c138b10"],[1.46547806792296009e-01,1.95776434333755328e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["6f355c138b10"],[1.46547806792296009e-01,1.95776434333755328e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"618_2": [ +[[3,0,0,4,["6e29ec929165"],[1.08340247949507668e-01,-2.16676610021379973e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["6e29ec929165"],[1.08340247949507668e-01,-2.16676610021379973e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"619_2": [ +[[3,0,0,4,["f4a58c87c46"],[-8.88485999075601385e-04,-3.36122422567242118e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["f4a58c87c46"],[-8.88485999075601385e-04,-3.36122422567242118e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"620_2": [ +[[3,0,0,4,["6db1c33abc60"],[1.52741664283959022e-01,1.86701139754402695e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["6db1c33abc60"],[1.52741664283959022e-01,1.86701139754402695e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"621_2": [ +[[3,0,0,4,["d31441a45e2d"],[6.87778840773424494e-02,4.59044060696087497e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d31441a45e2d"],[6.87778840773424494e-02,4.59044060696087497e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"622_2": [ +[[3,0,0,4,["8921bcaa948f"],[2.10086309174503411e-01,2.16332509002300194e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["8921bcaa948f"],[2.10086309174503411e-01,2.16332509002300194e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"623_2": [ +[[3,0,0,4,["6f38edc838cf"],[1.91451038698469966e-01,-1.52204362259675346e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6f38edc838cf"],[1.91451038698469966e-01,-1.52204362259675346e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"624_2": [ +[[3,0,0,4,["6aaffa7b0a3e"],[1.28213809856660477e-01,1.96474383771454958e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6aaffa7b0a3e"],[1.28213809856660477e-01,1.96474383771454958e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"625_2": [ +[[3,0,0,4,["4da7c0d904c4"],[-1.33490843496491346e-01,1.06494819328112000e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["4da7c0d904c4"],[-1.33490843496491346e-01,1.06494819328112000e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"626_2": [ +[[3,0,0,4,["6a1c87a3fdf0"],[-2.01791171586975349e-01,1.17169086533579159e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6a1c87a3fdf0"],[-2.01791171586975349e-01,1.17169086533579159e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"627_2": [ +[[3,0,0,4,["c24c923898ea"],[2.51129889770984105e-01,3.45676060005476293e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["c24c923898ea"],[2.51129889770984105e-01,3.45676060005476293e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"628_2": [ +[[3,0,0,4,["e2af33768ff3"],[-3.68096768661705709e-01,3.36141767132546232e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["e2af33768ff3"],[-3.68096768661705709e-01,3.36141767132546232e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"629_2": [ +[[3,0,0,4,["b17ca03b8be6"],[-2.15181542292321781e-01,3.25621183686181981e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b17ca03b8be6"],[-2.15181542292321781e-01,3.25621183686181981e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"630_2": [ +[[3,0,0,4,["6e96ba66e704"],[-2.41610412415479314e-01,2.76491032366179279e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6e96ba66e704"],[-2.41610412415479314e-01,2.76491032366179279e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"631_2": [ +[[3,0,0,4,["976d63801fff"],[-1.54306212335111825e-01,2.95081966389736161e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["976d63801fff"],[-1.54306212335111825e-01,2.95081966389736161e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"632_2": [ +[[3,0,0,4,["8f32e0c3c17e"],[-3.14189359469620344e-01,-2.11044149071236281e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["8f32e0c3c17e"],[-3.14189359469620344e-01,-2.11044149071236281e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"633_2": [ +[[3,0,0,4,["7177d89cdc4e"],[-1.90127277617537976e-01,1.61590218694275284e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["7177d89cdc4e"],[-1.90127277617537976e-01,1.61590218694275284e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"634_2": [ +[[3,0,0,4,["3289e415de49"],[-7.31691422644662470e-02,8.36505018064144235e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["3289e415de49"],[-7.31691422644662470e-02,8.36505018064144235e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"635_2": [ +[[3,0,0,4,["4a900f047b32"],[-1.58624728663000619e-01,-4.15063151726390092e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["4a900f047b32"],[-1.58624728663000619e-01,-4.15063151726390092e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"636_2": [ +[[3,0,0,4,["92e4d1efa1ae"],[-3.15298581157831825e-01,7.02184271500957413e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["92e4d1efa1ae"],[-3.15298581157831825e-01,7.02184271500957413e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"637_2": [ +[[3,0,0,4,["61b3228446dd"],[-2.64763397855448807e-02,2.13206362567808727e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["61b3228446dd"],[-2.64763397855448807e-02,2.13206362567808727e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"638_2": [ +[[3,0,0,4,["4270c26ca1d7"],[-1.22787791254657899e-01,-7.91806511287895948e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["4270c26ca1d7"],[-1.22787791254657899e-01,-7.91806511287895948e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"639_2": [ +[[3,0,0,4,["a7e436b5b805"],[-3.63733536828798443e-01,6.32811565994756270e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a7e436b5b805"],[-3.63733536828798332e-01,6.32811565994756131e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"640_2": [ +[[3,0,0,4,["90dfa1d261db"],[-2.60201041100632136e-01,1.83817429682301636e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["90dfa1d261db"],[-2.60201041100632136e-01,1.83817429682301636e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"641_2": [ +[[3,0,0,4,["8bc5beccb7a8"],[-1.64568657189772538e-01,2.59594067236210591e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["8bc5beccb7a8"],[-1.64568657189772538e-01,2.59594067236210591e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"642_2": [ +[[3,0,0,4,["bb2b919c7aa9"],[-2.34586173711268581e-01,3.38196649658589255e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["bb2b919c7aa9"],[-2.34586173711268581e-01,3.38196649658589255e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"643_2": [ +[[3,0,0,4,["9533ce5c1835"],[-1.21005406545056232e-01,3.04970421114967249e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["9533ce5c1835"],[-1.21005406545056232e-01,3.04970421114967249e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"644_2": [ +[[3,0,0,4,["405fc7394237"],[-4.68603216882906848e-02,1.33579209768143081e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["405fc7394237"],[-4.68603216882906848e-02,1.33579209768143081e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"645_2": [ +[[3,0,0,4,["cbbc8d3470b6"],[-4.47438788078611815e-01,2.28402250121272354e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["cbbc8d3470b6"],[-4.47438788078611815e-01,2.28402250121272354e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"646_2": [ +[[3,0,0,4,["70d902867e5a"],[-8.91848061240483186e-02,2.31574670576010028e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["70d902867e5a"],[-8.91848061240483186e-02,2.31574670576010028e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"647_2": [ +[[3,0,0,4,["cf8d23875bde"],[9.04344022630536870e-02,4.47361014756189446e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["cf8d23875bde"],[9.04344022630536870e-02,4.47361014756189446e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"648_2": [ +[[3,0,0,4,["d3f42ada1154"],[2.53708558272418450e-01,3.90989842557487921e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d3f42ada1154"],[2.53708558272418450e-01,3.90989842557487921e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"649_2": [ +[[3,0,0,4,["a3fe1c194169"],[-3.22218381025314637e-01,1.61940356699835614e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a3fe1c194169"],[-3.22218381025314637e-01,1.61940356699835614e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"650_2": [ +[[3,0,0,4,["10af3287ff3f3"],[-1.22113167417106899e-01,5.74187515225578649e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["10af3287ff3f3"],[-1.22113167417106899e-01,5.74187515225578649e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"651_2": [ +[[3,0,0,4,["8ecebc8df9dd"],[-2.92249659979912368e-01,-1.14932464406424073e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["8ecebc8df9dd"],[-2.92249659979912368e-01,-1.14932464406424073e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"652_2": [ +[[3,0,0,4,["c2412a00c376"],[-4.18797665792703333e-01,8.41602750066909600e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["c2412a00c376"],[-4.18797665792703333e-01,8.41602750066909600e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"653_2": [ +[[3,0,0,4,["93027462d1fe"],[-3.05484208661457091e-01,-1.05772126093254176e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["93027462d1fe"],[-3.05484208661457091e-01,-1.05772126093254176e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"654_2": [ +[[3,0,0,4,["a9c6bccd24c2"],[2.93288035652810586e-02,3.72188291426484019e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["a9c6bccd24c2"],[2.93288035652810586e-02,3.72188291426484019e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"655_2": [ +[[3,0,0,4,["aedb18565f24"],[-3.11390719286691042e-01,2.25577798732205514e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["aedb18565f24"],[-3.11390719286691042e-01,2.25577798732205514e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"656_2": [ +[[3,0,0,4,["34091a0309af"],[1.14144885928500667e-01,8.03572927238524470e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["34091a0309af"],[1.14144885928500667e-01,8.03572927238524470e-03]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"657_2": [ +[[3,0,0,4,["f5ae2fe45d5e"],[-2.81870407461887296e-01,4.60897655558780484e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["f5ae2fe45d5e"],[-2.81870407461887296e-01,4.60897655558780484e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"658_2": [ +[[3,0,0,4,["7d8227f8b4a3"],[-2.02503952495387107e-01,1.87525752721429045e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["7d8227f8b4a3"],[-2.02503952495387107e-01,1.87525752721429045e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"659_2": [ +[[3,0,0,4,["c84be8226be8"],[-2.35322662478039013e-01,3.72324235296472739e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["c84be8226be8"],[-2.35322662478039013e-01,3.72324235296472739e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"660_2": [ +[[3,0,0,4,["87abf07e54b7"],[1.49894262233356612e-01,2.57956394853047000e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["87abf07e54b7"],[1.49894262233356612e-01,2.57956394853047000e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"661_2": [ +[[3,0,0,4,["d59ef9bebce7"],[-1.57864381268022214e-01,4.42437550932491264e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["d59ef9bebce7"],[-1.57864381268022214e-01,4.42437550932491264e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"662_2": [ +[[3,0,0,4,["7343fbfe3491"],[2.07803168137369321e-01,-1.45140357749961285e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["7343fbfe3491"],[2.07803168137369321e-01,-1.45140357749961285e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"663_2": [ +[[3,0,0,4,["7838b7c64741"],[-2.58013985903321752e-01,5.76218406224357216e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["7838b7c64741"],[-2.58013985903321752e-01,5.76218406224357216e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"664_2": [ +[[3,0,0,4,["a8edc91e4707"],[2.95465953987628982e-01,2.25157996946907885e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a8edc91e4707"],[2.95465953987628982e-01,2.25157996946907885e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"665_2": [ +[[3,0,0,4,["3169a1bd5df9"],[1.00862411926692430e-01,4.04185961772226335e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["3169a1bd5df9"],[1.00862411926692430e-01,4.04185961772226335e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"666_2": [ +[[3,0,0,4,["f0001df710eb"],[-3.43575993076079778e-01,4.00615909717091268e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["f0001df710eb"],[-3.43575993076079778e-01,4.00615909717091268e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"667_2": [ +[[3,0,0,4,["a6793daef3dd"],[-2.30474784762428331e-01,2.84421230664547553e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a6793daef3dd"],[-2.30474784762428331e-01,2.84421230664547553e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"668_2": [ +[[3,0,0,4,["9fd965c32ce7"],[-1.44491454666634378e-01,3.20441875654058184e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9fd965c32ce7"],[-1.44491454666634433e-01,3.20441875654058184e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"669_2": [ +[[3,0,0,4,["1244d8c9d33b7"],[-6.34010229266869674e-01,1.05822294695705837e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["1244d8c9d33b7"],[-6.34010229266869674e-01,1.05822294695705837e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"670_2": [ +[[3,0,0,4,["43877830af8b"],[-1.00473719945528811e-01,1.09346955002597918e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["43877830af8b"],[-1.00473719945528811e-01,1.09346955002597918e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"671_2": [ +[[3,0,0,4,["12ffff4190f1e"],[-6.64751066502708543e-01,7.07236863247562159e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["12ffff4190f1e"],[-6.64751066502708543e-01,7.07236863247562159e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"672_2": [ +[[3,0,0,4,["c25ac081b16d"],[-4.26165453287317364e-01,-3.23307006599973523e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c25ac081b16d"],[-4.26165453287317364e-01,-3.23307006599973523e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"673_2": [ +[[3,0,0,4,["a90569e21ce6"],[-3.71525666624919038e-01,1.07594824689431767e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["a90569e21ce6"],[-3.71525666624919038e-01,1.07594824689431767e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"674_2": [ +[[3,0,0,4,["5f62ee8565f0"],[-1.91421932067728506e-01,8.57651095063119151e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["5f62ee8565f0"],[-1.91421932067728506e-01,8.57651095063119151e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"675_2": [ +[[3,0,0,4,["49b2fb7ff376"],[-1.61476837926922023e-01,1.38081914365345282e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["49b2fb7ff376"],[-1.04417501301992052e-01,1.23945232903383190e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"676_2": [ +[[3,0,0,4,["c41fe74a1a67"],[-3.78610452099881312e-01,2.06540099083989515e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["c41fe74a1a67"],[-1.21672113458700312e-01,4.13763922757161118e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"677_2": [ +[[3,0,0,4,["ababb287b4e8"],[-2.44292610174066616e-01,2.87807738601660978e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["ababb287b4e8"],[-3.76251764891043949e-01,3.07698423953554900e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"678_2": [ +[[3,0,0,4,["673fbd053d5f"],[-2.27037998017358300e-01,-2.01095125211690762e-03]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["673fbd053d5f"],[-1.59118150718084606e-01,-1.61962065252099524e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"679_2": [ +[[3,0,0,4,["c88154da1714"],[-4.40629076131833164e-01,-1.58928739111411504e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c88154da1714"],[-4.40629076131833164e-01,-1.58928739111411504e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"680_2": [ +[[3,0,0,4,["7ac5acb0136a"],[-7.44291696832606042e-02,2.59516622711133516e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["7ac5acb0136a"],[1.30876593148555515e-01,2.36135334350791037e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"681_2": [ +[[3,0,0,4,["85273a588660"],[1.26571186117518525e-01,2.64037323451045969e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["85273a588660"],[1.26571186117518525e-01,2.64037323451045969e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"682_2": [ +[[3,0,0,4,["10ea6c80b740"],[-1.83486761031542156e-02,3.23577126740136750e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["10ea6c80b740"],[-3.58548313538168961e-02,9.90588475714503092e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"683_2": [ +[[3,0,0,4,["6bbcb2e34088"],[-1.63674008859701153e-01,1.71289809132746162e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6bbcb2e34088"],[-1.63674008859701153e-01,1.71289809132746162e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"684_2": [ +[[3,0,0,4,["d9588ae2d17e"],[-1.79920827720680493e-01,4.42790447063594883e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d9588ae2d17e"],[1.85876890405301226e-01,4.40323365121280674e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"685_2": [ +[[3,0,0,4,["145ba603548d1"],[2.86783339105332880e-01,6.56366809779632687e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["145ba603548d1"],[-2.61334978328256917e-01,6.66907865953661139e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"686_2": [ +[[3,0,0,4,["12f7247de309a"],[-8.42503628783133340e-02,6.61945689421240546e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["12f7247de309a"],[-8.42503628783133340e-02,6.61945689421240546e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"687_2": [ +[[3,0,0,4,["1757bfb91d5d0"],[-3.30326551271298785e-01,7.51943596604370379e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["1757bfb91d5d0"],[2.98128271818850932e-01,7.65280560638653240e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"688_2": [ +[[3,0,0,4,["aa544be9a1ce"],[1.74531957691783229e-01,3.31409614262260122e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["aa544be9a1ce"],[-1.10929254777638639e-01,3.57754716412885587e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"689_2": [ +[[3,0,0,4,["5a769907f32d"],[-1.89092928929470244e-01,6.17846533721142926e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["5a769907f32d"],[-1.89092928929470244e-01,6.17846533721142926e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"690_2": [ +[[3,0,0,4,["723250a77fa2"],[-1.95051199079724263e-01,1.58166725759134347e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["723250a77fa2"],[-1.95051199079724263e-01,1.58166725759134347e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"691_2": [ +[[3,0,0,4,["62d433aa6862"],[-2.06259043183780716e-01,6.84709155774079203e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["62d433aa6862"],[-2.06259043183780716e-01,6.84709155774079203e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"692_2": [ +[[3,0,0,4,["598fc2912fa1"],[-1.68897109628960401e-01,1.01302837598632831e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["598fc2912fa1"],[-1.68897109628960401e-01,1.01302837598632831e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"693_2": [ +[[3,0,0,4,["12aed3efc7fcb"],[-6.54440021558226892e-01,6.17507090425162969e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["12aed3efc7fcb"],[-6.54440021558226892e-01,6.17507090425162830e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"694_2": [ +[[3,0,0,4,["9b4513ddfe2f"],[-2.79316088594568468e-01,1.96380106234343571e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["9b4513ddfe2f"],[-2.79316088594568468e-01,1.96380106234343571e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"695_2": [ +[[3,0,0,4,["7360bc3a030c"],[1.92760512221077679e-01,1.64974316381226893e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["7360bc3a030c"],[1.92760512221077679e-01,1.64974316381226893e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"696_2": [ +[[3,0,0,4,["f2f4d2488ae3"],[-5.34131615719540487e-01,1.20102745281203821e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["f2f4d2488ae3"],[-5.34131615719540598e-01,1.20102745281204099e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"697_2": [ +[[3,0,0,4,["75c7c48bbe9d"],[-2.56165639771655573e-01,-3.82237134418011298e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["75c7c48bbe9d"],[-2.56165639771655573e-01,-3.82237134418011298e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"698_2": [ +[[3,0,0,4,["b4ac70b0ed16"],[-3.59529566447493565e-01,1.69086073801296255e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["b4ac70b0ed16"],[-3.59529566447493565e-01,1.69086073801296255e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"699_2": [ +[[3,0,0,4,["73c779b3a80a"],[2.54017544165207776e-01,-1.72289113675681838e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["73c779b3a80a"],[2.54017544165207776e-01,-1.72289113675681838e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"700_2": [ +[[3,0,0,4,["29e094bf3c85"],[9.06870055358776628e-02,1.60083576412594908e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["29e094bf3c85"],[9.06870055358776628e-02,1.60083576412594908e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"701_2": [ +[[3,0,0,4,["461bf3e9d609"],[-1.07165934540798730e-01,-1.10834958575695711e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["461bf3e9d609"],[-1.07165934540798730e-01,-1.10834958575695711e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"702_2": [ +[[3,0,0,4,["30b535ec6f4e"],[1.00363893977493901e-01,3.74109266704070187e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["30b535ec6f4e"],[1.00363893977493901e-01,3.74109266704070187e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"703_2": [ +[[3,0,0,4,["12eaba28973dd"],[-1.74488037348229263e-01,6.42300399909774944e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["12eaba28973dd"],[-1.74488037348229263e-01,6.42300399909774944e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"704_2": [ +[[3,0,0,4,["52425af40335"],[-1.77179272543009886e-01,3.64507794256893336e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["52425af40335"],[-1.77179272543009886e-01,3.64507794256893336e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"705_2": [ +[[3,0,0,4,["e5c861bef571"],[-1.53767385140399199e-01,4.81332783009612242e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["e5c861bef571"],[-1.53767385140399199e-01,4.81332783009612242e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"706_2": [ +[[3,0,0,4,["ed11b014d9a2"],[-1.75169954169546727e-01,4.91009671451228424e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["ed11b014d9a2"],[-1.75169954169546727e-01,4.91009671451228424e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"707_2": [ +[[3,0,0,4,["b0989c4c3a02"],[-2.08407223178374346e-01,3.27679132821898311e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b0989c4c3a02"],[-2.08407223178374346e-01,3.27679132821898311e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"708_2": [ +[[3,0,0,4,["65370e3b251e"],[1.67393398160136680e-01,1.46692730333259913e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["65370e3b251e"],[1.67393398160136680e-01,1.46692730333259913e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"709_2": [ +[[3,0,0,4,["1264d76dce7e0"],[6.32495094165873989e-03,6.47147342481915411e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["1264d76dce7e0"],[6.32495094165873989e-03,6.47147342481915411e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"710_2": [ +[[3,0,0,4,["99bce77b0908"],[-3.04974651885790926e-01,1.45890275824869381e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["99bce77b0908"],[-3.04974651885790926e-01,1.45890275824869381e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"711_2": [ +[[3,0,0,4,["85a459e00f69"],[-2.41977105333835568e-01,1.66774179477788081e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["85a459e00f69"],[-2.41977105333835568e-01,1.66774179477788081e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"712_2": [ +[[3,0,0,4,["e52099bc4c97"],[-4.32879956629753301e-02,5.01993409215767628e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["e52099bc4c97"],[-4.32879956629753301e-02,5.01993409215767628e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"713_2": [ +[[3,0,0,4,["e104374bdde7"],[-9.46045452985654067e-02,4.85688477214454295e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["e104374bdde7"],[-9.46045452985654067e-02,4.85688477214454295e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"714_2": [ +[[3,0,0,4,["556905adcd73"],[1.02131585950688372e-01,1.57623467114610727e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["556905adcd73"],[1.02131585950688372e-01,1.57623467114610727e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"715_2": [ +[[3,0,0,4,["4c979f2c3856"],[1.26472021687013159e-01,1.11233459042045735e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["4c979f2c3856"],[1.26472021687013159e-01,1.11233459042045735e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"716_2": [ +[[3,0,0,4,["70191db5e8f9"],[1.32737784399296482e-01,2.07716299644396751e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["70191db5e8f9"],[1.32737784399296482e-01,2.07716299644396751e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"717_2": [ +[[3,0,0,4,["9faa92106385"],[-2.86110486438712008e-01,2.03516443380668488e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["9faa92106385"],[-2.86110486438712008e-01,2.03516443380668488e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"718_2": [ +[[3,0,0,4,["85106eca3c13"],[1.36235655669383671e-01,2.58961752815440094e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["85106eca3c13"],[1.36235655669383671e-01,2.58961752815440094e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"719_2": [ +[[3,0,0,4,["81cf46b46687"],[-2.20862629671134042e-01,1.80842373457907934e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["81cf46b46687"],[-2.20862629671134042e-01,1.80842373457907934e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"720_2": [ +[[3,0,0,4,["3d5e580905d9"],[-6.15956653792826270e-03,1.34810182440386284e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["3d5e580905d9"],[-6.15956653792826270e-03,1.34810182440386284e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"721_2": [ +[[3,0,0,4,["d51ed8bb88e0"],[-1.79675571587529198e-01,4.32846394472739926e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d51ed8bb88e0"],[-1.79675571587529198e-01,4.32846394472739926e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"722_2": [ +[[3,0,0,4,["2c82e3dfbcb8"],[-9.71344333318490960e-02,1.20690793947684227e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["2c82e3dfbcb8"],[-9.71344333318490960e-02,1.20690793947684227e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"723_2": [ +[[3,0,0,4,["38db104da9a2"],[3.24972828949679146e-02,1.20729816512306701e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["38db104da9a2"],[3.24972828949679146e-02,1.20729816512306701e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"724_2": [ +[[3,0,0,4,["6e83c3814406"],[-1.50700775959905386e-01,1.90657113493941072e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["6e83c3814406"],[-1.50700775959905386e-01,1.90657113493941072e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"725_2": [ +[[3,0,0,4,["4408cd7aaace"],[1.37851520213817663e-02,1.48972752505796890e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["4408cd7aaace"],[1.37851520213817663e-02,1.48972752505796890e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"726_2": [ +[[3,0,0,4,["1874e1d88ac2"],[-3.55776238555085833e-02,-4.03309093361306215e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["1874e1d88ac2"],[-3.55776238555085833e-02,-4.03309093361306215e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"727_2": [ +[[3,0,0,4,["7c9cc348abc7"],[3.68237890274064755e-02,-2.71539987195688892e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7c9cc348abc7"],[3.68237890274064755e-02,-2.71539987195688892e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"728_2": [ +[[3,0,0,4,["858e9fb80ac2"],[-1.84292909794158938e-01,2.28676643756317410e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["858e9fb80ac2"],[-1.84292909794158938e-01,2.28676643756317410e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"729_2": [ +[[3,0,0,4,["8642ddc728f7"],[4.21504537020861991e-02,-2.92219198107690759e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8642ddc728f7"],[4.21504537020861991e-02,-2.92219198107690759e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"730_2": [ +[[3,0,0,4,["abb01f3bfa99"],[1.60737313136974036e-01,3.41620238659253617e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["abb01f3bfa99"],[1.60737313136974036e-01,3.41620238659253617e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"731_2": [ +[[3,0,0,4,["15f534e5b2dd1"],[-1.29009495937684876e-02,7.72465034505749215e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["15f534e5b2dd1"],[-1.29009495937684876e-02,7.72465034505749215e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"732_2": [ +[[3,0,0,4,["d03d36d66b8a"],[3.87043440492983670e-01,2.44725439322362376e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["d03d36d66b8a"],[3.87043440492983726e-01,2.44725439322362376e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"733_2": [ +[[3,0,0,4,["1b787077a7a6"],[-6.04007318561234352e-02,-9.49459391317047929e-04]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["1b787077a7a6"],[-6.04007318561234352e-02,-9.49459391317047929e-04]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"734_2": [ +[[3,0,0,4,["e692e7eb6b3a"],[-5.04845093498948572e-01,4.70979380933738423e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["e692e7eb6b3a"],[-5.04845093498948572e-01,4.70979380933738423e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"735_2": [ +[[3,0,0,4,["29212c8e8e43"],[6.81300034257981135e-02,5.94860112603445082e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["29212c8e8e43"],[6.81300034257981135e-02,5.94860112603445082e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"736_2": [ +[[3,0,0,4,["57569f7dad5a"],[1.62404928095883722e-01,1.02524830019160434e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["57569f7dad5a"],[1.62404928095883722e-01,1.02524830019160434e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"737_2": [ +[[3,0,0,4,["82f9ed43f2f1"],[-2.86243488213673902e-01,3.19392504243172920e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["82f9ed43f2f1"],[-2.86243488213673902e-01,3.19392504243172920e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"738_2": [ +[[3,0,0,4,["d12387c25cc0"],[-4.00650856042246151e-02,4.58152569646010033e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["d12387c25cc0"],[-4.00650856042246151e-02,4.58152569646010033e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"739_2": [ +[[3,0,0,4,["98d1358fd1d2"],[8.17590926885794489e-02,3.25951118142703944e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["98d1358fd1d2"],[8.17590926885794489e-02,3.25951118142703944e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"740_2": [ +[[3,0,0,4,["913e8b78c4e1"],[1.36947589678057424e-01,2.88546226452470855e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["913e8b78c4e1"],[1.36947589678057424e-01,2.88546226452470855e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"741_2": [ +[[3,0,0,4,["13d238b45e811"],[8.65736428721944756e-02,6.92001269438433209e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["13d238b45e811"],[8.65736428721944756e-02,6.92001269438433209e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"742_2": [ +[[3,0,0,4,["f8049128a6df"],[-3.96301850838911673e-01,3.74703520493757269e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["f8049128a6df"],[-3.96301850838911673e-01,3.74703520493757269e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"743_2": [ +[[3,0,0,4,["9725190feb3c"],[-3.24151396246906032e-01,-7.34606948143112087e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["9725190feb3c"],[-3.24151396246906032e-01,-7.34606948143112087e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"744_2": [ +[[3,0,0,4,["e1ce5b024fe0"],[-4.43018074273523910e-01,2.24275905411618903e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["e1ce5b024fe0"],[-4.43018074273523910e-01,2.24275905411618903e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"745_2": [ +[[3,0,0,4,["a5b86fbcafab"],[-3.61792845735377511e-01,-4.37053505174349044e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["a5b86fbcafab"],[-3.61792845735377511e-01,-4.37053505174349044e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"746_2": [ +[[3,0,0,4,["9e57d90722de"],[-3.10052994521401892e-01,1.58463169950314897e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["9e57d90722de"],[-3.10052994521401892e-01,1.58463169950314897e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"747_2": [ +[[3,0,0,4,["11b85df2a62b6"],[-5.81790788739513842e-01,2.24139960216463457e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["11b85df2a62b6"],[-2.52897326145635981e-01,5.69879097753524633e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"748_2": [ +[[3,0,0,4,["12e59381bc730"],[-2.69248162360432142e-01,6.07913989771666552e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["12e59381bc730"],[-2.69248162360432142e-01,6.07913989771666552e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"749_2": [ +[[3,0,0,4,["b118d9d761de"],[-1.23541029127890861e-01,3.69325849011604701e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["b118d9d761de"],[-3.48509511754681145e-01,1.73796112852488277e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"750_2": [ +[[3,0,0,4,["1e5db3d7edcc"],[3.35834635058880338e-02,-5.77159528844105804e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["1e5db3d7edcc"],[3.35834635058880338e-02,-5.77159528844105804e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"751_2": [ +[[3,0,0,4,["45f7011a286a"],[-6.61864352892411606e-02,-1.38890310957278995e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["45f7011a286a"],[-6.61864352892411606e-02,-1.38890310957278995e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"752_2": [ +[[3,0,0,4,["503b70d65e4b"],[-1.76078302187914204e-01,1.11732668584856587e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["503b70d65e4b"],[-1.76078302187914204e-01,1.11732668584856587e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"753_2": [ +[[3,0,0,4,["12a86735ee9a6"],[-1.51691773927424972e-01,6.38697420912222147e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["12a86735ee9a6"],[-1.51691773927424972e-01,6.38697420912222147e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"754_2": [ +[[3,0,0,4,["ee4df4ba83db"],[2.40712741358057841e-01,4.65480755000156954e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["ee4df4ba83db"],[2.40712741358057841e-01,4.65480755000156954e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"755_2": [ +[[3,0,0,4,["c0ceb259339b"],[-3.37471726999233335e-01,2.56668340949070872e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["c0ceb259339b"],[-3.37471726999233335e-01,2.56668340949070872e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"756_2": [ +[[3,0,0,4,["27400a1e3419"],[-5.89472543549754008e-02,6.30474657873618949e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["27400a1e3419"],[-5.89472543549754008e-02,6.30474657873618949e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"757_2": [ +[[3,0,0,4,["7365367d4a98"],[2.29428397798352890e-01,1.08421718543234374e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["7365367d4a98"],[2.29428397798352890e-01,1.08421718543234374e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"758_2": [ +[[3,0,0,4,["32282ec25a14"],[-9.86271997765911929e-02,-4.93756588393498425e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["32282ec25a14"],[-9.86271997765911929e-02,-4.93756588393498425e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"759_2": [ +[[3,0,0,4,["e1e4178a643e"],[5.16453772660633859e-02,4.94047480679224327e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["e1e4178a643e"],[5.16453772660633859e-02,4.94047480679224327e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"760_2": [ +[[3,0,0,4,["4add49dc07fe"],[1.23264479588886505e-01,1.09125779274200446e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["4add49dc07fe"],[1.23264479588886505e-01,1.09125779274200446e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"761_2": [ +[[3,0,0,4,["8514c2d8228d"],[-2.39838091868926212e-01,1.67692555046589142e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["8514c2d8228d"],[-2.39838091868926212e-01,1.67692555046589142e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"762_2": [ +[[3,0,0,4,["d76b8370e497"],[2.46669731896072775e-01,4.04423732076622799e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["d76b8370e497"],[2.46669731896072775e-01,4.04423732076622799e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"763_2": [ +[[3,0,0,4,["cc3c09579f30"],[1.11994054921468772e-01,4.34928638549873736e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["cc3c09579f30"],[1.11994054921468772e-01,4.34928638549873736e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"764_2": [ +[[3,0,0,4,["a6c3bd3ede6f"],[2.03140892404875290e-01,3.05314238880188660e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a6c3bd3ede6f"],[2.03140892404875290e-01,3.05314238880188660e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"765_2": [ +[[3,0,0,4,["369de21011f7"],[-1.20070784900658992e-01,-2.80141799837627797e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["369de21011f7"],[-1.20070784900658992e-01,-2.80141799837627797e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"766_2": [ +[[3,0,0,4,["e44eb25267a3"],[-4.07942146369839664e-01,2.92644360807851722e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["e44eb25267a3"],[-4.07942146369839664e-01,2.92644360807851722e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"767_2": [ +[[3,0,0,4,["d7b77442f02d"],[-4.72221070195417592e-01,4.50580637287014418e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["d7b77442f02d"],[-4.72221070195417592e-01,4.50580637287014418e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"768_2": [ +[[3,0,0,4,["804a56458104"],[9.00969240929684473e-02,2.67339832786760878e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["804a56458104"],[9.00969240929684473e-02,2.67339832786760878e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"769_2": [ +[[3,0,0,4,["73c6ad89c7d2"],[3.92328940963019845e-02,2.51553254522128789e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["73c6ad89c7d2"],[3.92328940963019845e-02,2.51553254522128789e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"770_2": [ +[[3,0,0,4,["6778bf40c490"],[-2.12558087231806692e-01,-8.11909237720518373e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["6778bf40c490"],[-2.12558087231806692e-01,-8.11909237720518373e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"771_2": [ +[[3,0,0,4,["b55b67b1ac52"],[-3.93173513216838466e-01,6.68034927092791692e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["b55b67b1ac52"],[-3.93173513216838466e-01,6.68034927092791692e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"772_2": [ +[[3,0,0,4,["e9a2ed96f199"],[-5.04765403262324441e-01,9.57784667224951536e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["e9a2ed96f199"],[-5.04765403262324441e-01,9.57784667224951536e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"773_2": [ +[[3,0,0,4,["870995ae8a81"],[-5.87271884550917694e-02,2.91085382319422215e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["870995ae8a81"],[-5.87271884550917694e-02,2.91085382319422215e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"774_2": [ +[[3,0,0,4,["4bfc6e2f8d80"],[-1.66495316699511176e-01,-1.41450910207927411e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["4bfc6e2f8d80"],[-1.66495316699511176e-01,-1.41450910207927411e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"775_2": [ +[[3,0,0,4,["58a5a48e2e96"],[-6.43782885448460074e-02,1.83999548303278887e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["58a5a48e2e96"],[-6.43782885448460074e-02,1.83999548303278887e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"776_2": [ +[[3,0,0,4,["99ea9d06f013"],[-3.37517854451966415e-01,-2.53149020353282128e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["99ea9d06f013"],[-3.37517854451966415e-01,-2.53149020353282128e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"777_2": [ +[[3,0,0,4,["cfeb76fed23f"],[-3.97219786245041728e-01,2.26422113330201458e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["cfeb76fed23f"],[-3.97219786245041728e-01,2.26422113330201458e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"778_2": [ +[[3,0,0,4,["ac3f7060726d"],[-3.74955184381542961e-01,5.36710106515985996e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["ac3f7060726d"],[-3.74955184381542961e-01,5.36710106515985996e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"779_2": [ +[[3,0,0,4,["944203cd7e6f"],[9.89242338233161933e-02,3.10652007551563247e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["944203cd7e6f"],[9.89242338233161933e-02,3.10652007551563247e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"780_2": [ +[[3,0,0,4,["3253a7274eb0"],[-1.83978874377672477e-02,1.09129776982606147e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["3253a7274eb0"],[-1.83978874377672477e-02,1.09129776982606147e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"781_2": [ +[[3,0,0,4,["713bf103e9ed"],[-2.24310481998760192e-01,-1.08111327890866055e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["713bf103e9ed"],[-2.24310481998760192e-01,-1.08111327890866055e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"782_2": [ +[[3,0,0,4,["63e9dee01661"],[-5.70839641761903410e-02,2.12167121555066673e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["63e9dee01661"],[-5.70839641761903410e-02,2.12167121555066673e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"783_2": [ +[[3,0,0,4,["53d24b5fc3be"],[-2.68074688723123136e-02,1.82365546764614028e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["53d24b5fc3be"],[-2.68074688723123136e-02,1.82365546764614028e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"784_2": [ +[[3,0,0,4,["5123671aedb9"],[-6.33838329261366684e-02,1.66787191215451935e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["5123671aedb9"],[-6.33838329261366684e-02,1.66787191215451935e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"785_2": [ +[[3,0,0,4,["7b10e7f57d01"],[7.32054590913935044e-02,2.60535786623245558e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["7b10e7f57d01"],[7.32054590913935044e-02,2.60535786623245558e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"786_2": [ +[[3,0,0,4,["7a12904412ba"],[-5.99092273685751589e-02,2.61669786947342664e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["7a12904412ba"],[-5.99092273685751589e-02,2.61669786947342664e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"787_2": [ +[[3,0,0,4,["a701d0631ffe"],[-2.22782709531205214e-01,2.91962734030842885e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["a701d0631ffe"],[-2.22782709531205214e-01,2.91962734030842885e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"788_2": [ +[[3,0,0,4,["76836679e228"],[-7.62396101316079877e-02,2.49212558922323552e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["76836679e228"],[1.22310345051748398e-01,2.30129435689905626e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"789_2": [ +[[3,0,0,4,["988808e57cb5"],[2.08813726344399875e-01,2.62494661535561447e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["988808e57cb5"],[2.08813726344399875e-01,2.62494661535561447e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"790_2": [ +[[3,0,0,4,["1292fa1d9b8d"],[1.45122079996931816e-02,-3.81799039850268807e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["1292fa1d9b8d"],[-1.67355883262910454e-02,-3.72589496994364666e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"791_2": [ +[[3,0,0,4,["b2b076826f37"],[-3.28513613081944933e-01,2.15597258247704482e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b2b076826f37"],[-3.28513613081944933e-01,2.15597258247704482e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"792_2": [ +[[3,0,0,4,["926438a37719"],[9.24229660656463309e-02,3.08365660042126954e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["926438a37719"],[9.24229660656463309e-02,3.08365660042126954e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"793_2": [ +[[3,0,0,4,["6a3036571d8e"],[-2.21525196079737474e-01,-7.38497819395035893e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6a3036571d8e"],[-2.08861649950232764e-01,1.04422286753091148e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"794_2": [ +[[3,0,0,4,["539342ef9076"],[-1.79728557115768878e-01,3.83948746884842096e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["539342ef9076"],[-1.79728557115768878e-01,3.83948746884842096e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"795_2": [ +[[3,0,0,4,["67562befbbe0"],[-1.65913877310692293e-01,1.55275313309981733e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["67562befbbe0"],[-1.65913877310692293e-01,1.55275313309981733e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"796_2": [ +[[3,0,0,4,["988873763371"],[-1.83125513443665067e-01,2.81023245891929452e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["988873763371"],[-1.83125513443665067e-01,2.81023245891929452e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"797_2": [ +[[3,0,0,4,["4490617e65b0"],[1.24062543544315174e-01,8.56809491813530638e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["4490617e65b0"],[1.24062543544315174e-01,8.56809491813530638e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"798_2": [ +[[3,0,0,4,["8940bd97cfa4"],[-1.89036359262980846e-01,2.35291219073059665e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["8940bd97cfa4"],[-1.89036359262980846e-01,2.35291219073059665e-01]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"799_2": [ +[[3,0,0,4,["90fc1c48739b"],[-2.40572784517572469e-01,2.09222587980102515e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["90fc1c48739b"],[-2.40572784517572469e-01,2.09222587980102515e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"800_2": [ +[[3,0,0,4,["cd36306c380a"],[1.28719207916418055e-01,4.32517849522447206e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["cd36306c380a"],[1.28719207916418055e-01,4.32517849522447206e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"801_2": [ +[[3,0,0,4,["d419c5934d29"],[-2.03257115385878567e-01,4.19796202721404887e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d419c5934d29"],[-2.03257115385878567e-01,4.19796202721404887e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"802_2": [ +[[3,0,0,4,["9fafda57f1a7"],[-7.61878040267609247e-02,3.42790660542087122e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9fafda57f1a7"],[-7.61878040267609247e-02,3.42790660542087122e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"803_2": [ +[[3,0,0,4,["9cf9b3f20687"],[1.27807351242160416e-02,3.44955875403414047e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["9cf9b3f20687"],[1.27807351242160416e-02,3.44955875403414047e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"804_2": [ +[[3,0,0,4,["10cbcd30ffa06"],[-1.00134335654854911e-01,5.82414885737762567e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["10cbcd30ffa06"],[-1.00134335654854911e-01,5.82414885737762567e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"805_2": [ +[[3,0,0,4,["9a1a757a1355"],[2.72079248814084129e-01,2.02015864824687752e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["9a1a757a1355"],[4.95422939317791411e-02,3.35235869781382423e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"806_2": [ +[[3,0,0,4,["318d2e41598a"],[8.05678052269436923e-02,7.33632889890263873e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["318d2e41598a"],[8.05678052269436923e-02,7.33632889890263873e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"807_2": [ +[[3,0,0,4,["9808f971d7e7"],[-2.95214029815897228e-01,1.56921335781460697e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9808f971d7e7"],[-3.19707983028150622e-01,-9.77877017403064874e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"808_2": [ +[[3,0,0,4,["e4d3a61800f7"],[4.28089445937315377e-02,5.01371076331311616e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["e4d3a61800f7"],[4.28089445937315377e-02,5.01371076331311616e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"809_2": [ +[[3,0,0,4,["b46b6306a7f7"],[2.89750342736075583e-01,2.71021454314486987e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b46b6306a7f7"],[2.89750342736075583e-01,2.71021454314486987e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"810_2": [ +[[3,0,0,4,["8f56516f65f2"],[-1.03773132345543584e-01,2.97629479308865408e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["8f56516f65f2"],[-2.83834508686822917e-01,1.37077137513817060e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"811_2": [ +[[3,0,0,4,["9bbca304c53b"],[-1.17432466682968820e-02,3.42267585381948680e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9bbca304c53b"],[-1.17432466682968820e-02,3.42267585381948680e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"812_2": [ +[[3,0,0,4,["c515d69ab3aa"],[3.30821425437442029e-01,2.79979568231775389e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c515d69ab3aa"],[3.30821425437442029e-01,2.79979568231775389e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"813_2": [ +[[3,0,0,4,["996b57b2d031"],[2.83375672468473616e-01,1.83080625750114578e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["996b57b2d031"],[2.83375672468473616e-01,1.83080625750114578e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"814_2": [ +[[3,0,0,4,["882d3238cf5d"],[2.65522116310892731e-01,1.38461327929934236e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["882d3238cf5d"],[2.65522116310892731e-01,1.38461327929934236e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"815_2": [ +[[3,0,0,4,["a12c78cdff50"],[-1.84050059647726499e-01,3.02890215024289755e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a12c78cdff50"],[-1.84050059647726499e-01,3.02890215024289755e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"816_2": [ +[[3,0,0,4,["109150f0aebce"],[2.87003979934417452e-01,5.07372485442969978e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["109150f0aebce"],[2.87003979934417452e-01,5.07372485442969978e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"817_2": [ +[[3,0,0,4,["ab5274082086"],[3.55176330380300609e-01,1.25633354676207121e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["ab5274082086"],[3.55176330380300609e-01,1.25633354676207121e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"818_2": [ +[[3,0,0,4,["780037fe9dc3"],[7.84061165254539699e-03,2.63768162641906001e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["780037fe9dc3"],[7.84061165254539699e-03,2.63768162641906001e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"819_2": [ +[[3,0,0,4,["87f9821a776b"],[1.92557647363942847e-01,2.28756134407230749e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["87f9821a776b"],[1.92557647363942847e-01,2.28756134407230749e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"820_2": [ +[[3,0,0,4,["6e60dad3b64c"],[1.41431610683054376e-01,1.97262006281579777e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["6e60dad3b64c"],[1.41431610683054376e-01,1.97262006281579777e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"821_2": [ +[[3,0,0,4,["7945c279b117"],[-1.80159673773594708e-02,2.66071803538924567e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7945c279b117"],[-1.80159673773594708e-02,2.66071803538924567e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"822_2": [ +[[3,0,0,4,["4f29ac84e4b0"],[8.44457188943956716e-02,1.52226969080191760e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["4f29ac84e4b0"],[8.44457188943956716e-02,1.52226969080191760e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"823_2": [ +[[3,0,0,4,["829c02a865e5"],[-1.70956455843593147e-01,2.30792719246856792e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["829c02a865e5"],[-1.70956455843593147e-01,2.30792719246856792e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"824_2": [ +[[3,0,0,4,["d57f9a7b29a8"],[8.87097708731315465e-02,4.61031033410944868e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["d57f9a7b29a8"],[8.87097708731315465e-02,4.61031033410944868e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"825_2": [ +[[3,0,0,4,["dc9ed08b824a"],[3.64712074479925374e-02,4.83776515670719998e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["dc9ed08b824a"],[3.64712074479925374e-02,4.83776515670719998e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"826_2": [ +[[3,0,0,4,["497a488eff2c"],[-5.96720977632469729e-02,1.50156743794745667e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["497a488eff2c"],[-5.96720977632469729e-02,1.50156743794745667e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"827_2": [ +[[3,0,0,4,["ad30fbb63af"],[-9.56070542480241814e-03,2.17987840477120651e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["ad30fbb63af"],[-9.56070542480241814e-03,2.17987840477120651e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"828_2": [ +[[3,0,0,4,["292ff61c2507"],[-8.97020530251921577e-02,1.25226883527401467e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["292ff61c2507"],[-8.97020530251921577e-02,1.25226883527401467e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"829_2": [ +[[3,0,0,4,["ac5051c1c429"],[-3.78810757973325085e-01,9.17849459570414805e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["ac5051c1c429"],[-3.78810757973325085e-01,9.17849459570414805e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"830_2": [ +[[3,0,0,4,["18cd53f15e4d"],[-3.66626658219322832e-02,4.03793821170934999e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["18cd53f15e4d"],[-3.66626658219322832e-02,4.03793821170934999e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"831_2": [ +[[3,0,0,4,["a457fc30d9c9"],[2.99360739034268963e-02,3.60153594212599182e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a457fc30d9c9"],[2.99360739034268963e-02,3.60153594212599182e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"832_2": [ +[[3,0,0,4,["570ed6025fcc"],[-8.83659362002182786e-02,1.69828378267607383e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["570ed6025fcc"],[-8.83659362002182786e-02,1.69828378267607383e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"833_2": [ +[[3,0,0,4,["edaa8a35c3bb"],[4.32464123861750149e-01,2.93462931378953573e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["edaa8a35c3bb"],[4.32464123861750149e-01,2.93462931378953573e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"834_2": [ +[[3,0,0,4,["ad0dbaae8d6b"],[-2.84986918088003915e-01,-2.52190334287484885e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["ad0dbaae8d6b"],[-3.79841677853865578e-01,2.31906868050998638e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"835_2": [ +[[3,0,0,4,["b46c3cb7ac35"],[-3.94471968823859709e-01,4.24917846457436993e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["b46c3cb7ac35"],[-3.08980033211083360e-01,-2.48887575075635803e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"836_2": [ +[[3,0,0,4,["690fbcd7edc0"],[-2.13937870167543009e-01,8.72161832783199253e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["690fbcd7edc0"],[-2.13937870167543009e-01,8.72161832783199253e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"837_2": [ +[[3,0,0,4,["6637c8f1bdf0"],[1.92087023667220802e-01,-1.16740851463363882e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["6637c8f1bdf0"],[5.32777893017966353e-02,-2.18374284724268730e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"838_2": [ +[[3,0,0,4,["36500914e53"],[6.90289685134448661e-03,-2.84101147526161224e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["36500914e53"],[6.88998365300322324e-03,2.87218669383071390e-03]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"839_2": [ +[[3,0,0,4,["65ed39efe631"],[4.81736302331273875e-02,2.18900984000511778e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["65ed39efe631"],[4.81736302331273875e-02,2.18900984000511778e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"840_2": [ +[[3,0,0,4,["911d08b76a37"],[-1.49126220793586756e-01,2.82119018904072982e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["911d08b76a37"],[-1.49126220793586756e-01,2.82119018904072982e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"841_2": [ +[[3,0,0,4,["809398175bd8"],[2.82579028851441205e-01,9.62203975017561497e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["809398175bd8"],[2.82579028851441205e-01,9.62203975017561497e-03]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"842_2": [ +[[3,0,0,4,["200a4136a887"],[2.82438091221478005e-02,6.45480625821930054e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["200a4136a887"],[2.82438091221478005e-02,6.45480625821930054e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"843_2": [ +[[3,0,0,4,["615d150f2a1a"],[-2.14033902804432935e-01,5.51045468204319766e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["615d150f2a1a"],[-2.14033902804432935e-01,5.51045468204319766e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"844_2": [ +[[3,0,0,4,["724ca63cf0f7"],[-2.94786868751413661e-02,2.49612406932626874e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["724ca63cf0f7"],[-2.94786868751413661e-02,2.49612406932626874e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"845_2": [ +[[3,0,0,4,["dfe5b1298bac"],[-2.44326256675253706e-01,4.27455668420054558e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["dfe5b1298bac"],[-2.44326256675253706e-01,4.27455668420054447e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"846_2": [ +[[3,0,0,4,["aad4a1d0d2ab"],[-3.39907396847588972e-01,-1.59949162768226627e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["aad4a1d0d2ab"],[-3.39907396847588972e-01,-1.59949162768226627e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"847_2": [ +[[3,0,0,4,["2fe94b2da38c"],[1.01549151903398374e-01,-2.80729893753561000e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["2fe94b2da38c"],[5.19554927791436583e-02,-9.16566950901279431e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"848_2": [ +[[3,0,0,4,["40a2858ceb45"],[-3.84076823113385646e-03,-1.42081636390177984e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["40a2858ceb45"],[9.77510553123755732e-02,-1.03182721834776753e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"849_2": [ +[[3,0,0,4,["5f4054410d2d"],[2.04441447266577592e-01,4.55752036072521599e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["5f4054410d2d"],[2.04441447266577592e-01,4.55752036072521599e-02]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"850_2": [ +[[3,0,0,4,["5d75df3999c3"],[8.48147351532747007e-02,1.87204753464552648e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5d75df3999c3"],[8.48147351532747007e-02,1.87204753464552648e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"851_2": [ +[[3,0,0,4,["3afc99fd95cf"],[-1.29709243203686320e-01,-1.01051419394977693e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["3afc99fd95cf"],[-1.29709243203686320e-01,-1.01051419394977693e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"852_2": [ +[[3,0,0,4,["7632c7aaf4a2"],[1.86968814563007873e-01,-1.80559014607052787e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["7632c7aaf4a2"],[4.53241301490517334e-03,-2.59881420280920816e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"853_2": [ +[[3,0,0,4,["40608e40791d"],[1.38458562195234697e-01,2.95027521984967678e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["40608e40791d"],[1.18766584384813217e-01,-7.70433920983663589e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"854_2": [ +[[3,0,0,4,["4d2db31c2aa4"],[-6.69639515834994092e-02,-1.55948091646646775e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["4d2db31c2aa4"],[-6.69639515834994092e-02,-1.55948091646646775e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"855_2": [ +[[3,0,0,4,["3c119aceee89"],[1.14325126330253851e-01,-6.61681601047043044e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["3c119aceee89"],[1.14325126330253851e-01,-6.61681601047043044e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"856_2": [ +[[3,0,0,4,["171c76978f41"],[4.35823115331046007e-02,2.61430888006149095e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["171c76978f41"],[1.23313926527660739e-02,4.93033033969198786e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"857_2": [ +[[3,0,0,4,["2ccfb2ee2e28"],[-9.48901980089010277e-02,-2.65745612624199989e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["2ccfb2ee2e28"],[-4.83064500045136402e-02,-8.58885549559426087e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"858_2": [ +[[3,0,0,4,["d59112ed60fd"],[-6.61341014681540718e-03,4.69591561951680891e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["d59112ed60fd"],[-6.61341014681540718e-03,4.69591561951680891e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"859_2": [ +[[3,0,0,4,["35323cbf9972"],[-3.49476863441615659e-02,1.11637472469423835e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["35323cbf9972"],[-3.49476863441615659e-02,1.11637472469423835e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"860_2": [ +[[3,0,0,4,["a281461561ec"],[-2.59885632107822007e-01,2.45275493626190527e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a281461561ec"],[-2.59885632107822007e-01,2.45275493626190527e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"861_2": [ +[[3,0,0,4,["b989058d23e5"],[-3.88852408320811804e-01,1.23510295848001272e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["b989058d23e5"],[-3.88852408320811804e-01,1.23510295848001272e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"862_2": [ +[[3,0,0,4,["76745628248e"],[2.38656870677234650e-01,1.04378386198452563e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["76745628248e"],[2.38656870677234650e-01,1.04378386198452563e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"863_2": [ +[[3,0,0,4,["112fb3be31573"],[-1.34414321960748845e-01,5.89561987000747467e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["112fb3be31573"],[-1.34414321960748873e-01,5.89561987000747467e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"864_2": [ +[[3,0,0,4,["968be6aa8442"],[2.25598109775340144e-01,2.42287138715894607e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["968be6aa8442"],[2.25598109775340144e-01,2.42287138715894607e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"865_2": [ +[[3,0,0,4,["938ce97e5db5"],[6.95640044138370883e-02,3.16922044429922001e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["938ce97e5db5"],[6.95640044138370883e-02,3.16922044429922001e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"866_2": [ +[[3,0,0,4,["6975ff326bc3"],[-2.02561599881788457e-01,-1.12922640670431840e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6975ff326bc3"],[-2.02561599881788457e-01,-1.12922640670431840e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"867_2": [ +[[3,0,0,4,["c4a0b461238d"],[-4.20068744738563538e-01,1.02481691764702579e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["c4a0b461238d"],[-4.20068744738563538e-01,1.02481691764702579e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"868_2": [ +[[3,0,0,4,["ec73c1804f68"],[-2.30868358806143759e-01,4.65899322565458074e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["ec73c1804f68"],[-2.30868358806143759e-01,4.65899322565458074e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"869_2": [ +[[3,0,0,4,["e770725d4c8e"],[-2.34185887027458350e-01,4.51859691832405930e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["e770725d4c8e"],[-2.34185887027458350e-01,4.51859691832405930e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"870_2": [ +[[3,0,0,4,["ec6bb444719c"],[-5.52643187563569629e-02,5.16949042607247833e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["ec6bb444719c"],[-5.52643187563569629e-02,5.16949042607247833e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"871_2": [ +[[3,0,0,4,["626805991b51"],[2.16289368033914964e-01,-6.85024172244558249e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["626805991b51"],[2.16289368033914964e-01,-6.85024172244558249e-03]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"872_2": [ +[[3,0,0,4,["8afa2ecfd068"],[-2.89828430972094375e-01,9.69513215518647414e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["8afa2ecfd068"],[-2.89828430972094375e-01,9.69513215518647414e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"873_2": [ +[[3,0,0,4,["8ca5a3511ee9"],[3.68507987366097356e-02,3.07082879391238461e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["8ca5a3511ee9"],[3.68507987366097356e-02,3.07082879391238461e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"874_2": [ +[[3,0,0,4,["860fd1e46415"],[-2.76602440315151729e-02,2.93504520725143547e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["860fd1e46415"],[-2.76602440315151729e-02,2.93504520725143547e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"875_2": [ +[[3,0,0,4,["fd58c97fb2f0"],[2.98002264672816874e-01,4.70714771826774903e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["fd58c97fb2f0"],[2.98002264672816874e-01,4.70714771826774903e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"876_2": [ +[[3,0,0,4,["6ec84260c0c1"],[1.92270687810423141e-02,2.42852841563272803e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["6ec84260c0c1"],[1.92270687810423141e-02,2.42852841563272803e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"877_2": [ +[[3,0,0,4,["22f3c9c359b6"],[-5.68448761045527162e-02,-5.17325844199328574e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["22f3c9c359b6"],[-5.68448761045527162e-02,-5.17325844199328574e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"878_2": [ +[[3,0,0,4,["9b597f5b556f"],[-3.38657185937569882e-01,4.48747837416192882e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["9b597f5b556f"],[-3.38657185937569882e-01,4.48747837416192882e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"879_2": [ +[[3,0,0,4,["bacf069a98bd"],[-1.31753062337704868e-01,3.89095141804214228e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["bacf069a98bd"],[-1.31753062337704868e-01,3.89095141804214228e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"880_2": [ +[[3,0,0,4,["20a49041e4f3"],[-6.73126167465211978e-02,2.49342152589538124e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["20a49041e4f3"],[-6.73126167465211978e-02,2.49342152589538124e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"881_2": [ +[[3,0,0,4,["cd3593720fe9"],[1.81855617408030801e-01,4.12994074057073002e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["cd3593720fe9"],[1.81855617408030801e-01,4.12994074057073002e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"882_2": [ +[[3,0,0,4,["353db7d9bb63"],[3.36576894859190734e-02,-1.12136117155497164e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["353db7d9bb63"],[3.36576894859190734e-02,-1.12136117155497164e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"883_2": [ +[[3,0,0,4,["45a5c1fe63a7"],[5.69778200414012281e-02,1.42163381983205078e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["45a5c1fe63a7"],[5.69778200414012281e-02,1.42163381983205078e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"884_2": [ +[[3,0,0,4,["7de088fe2ae2"],[-1.31534222553483411e-02,2.76493957291832682e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["7de088fe2ae2"],[-1.31534222553483411e-02,2.76493957291832682e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"885_2": [ +[[3,0,0,4,["f5860117291b"],[3.17550798040071858e-02,5.38977133985298673e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["f5860117291b"],[3.17550798040071858e-02,5.38977133985298673e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"886_2": [ +[[3,0,0,4,["1223b1329b2bf"],[-4.33748536329364720e-01,4.68179803155391761e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["1223b1329b2bf"],[-4.33748536329364720e-01,4.68179803155391761e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"887_2": [ +[[3,0,0,4,["d3578abf36cf"],[-8.71038086864995287e-02,4.56510312933726237e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d3578abf36cf"],[-8.71038086864995287e-02,4.56510312933726237e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"888_2": [ +[[3,0,0,4,["109360fc48157"],[-5.79927546600689792e-02,5.80315045411186281e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["109360fc48157"],[-5.79927546600689792e-02,5.80315045411186281e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"889_2": [ +[[3,0,0,4,["237d124e6ff2"],[3.17006042736238530e-02,7.13115686746998434e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["237d124e6ff2"],[3.17006042736238530e-02,7.13115686746998434e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"890_2": [ +[[3,0,0,4,["11ce2929f63c4"],[-6.18214976778554304e-01,1.01358088218877623e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["11ce2929f63c4"],[-6.18214976778554304e-01,1.01358088218877623e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"891_2": [ +[[3,0,0,4,["a9eafbc19652"],[1.15343937888559955e-01,3.55404918477320919e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a9eafbc19652"],[1.15343937888559955e-01,3.55404918477320919e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"892_2": [ +[[3,0,0,4,["3f4ac4a76f5f"],[-9.37548738253921599e-02,1.02865427332761966e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["3f4ac4a76f5f"],[-9.37548738253921599e-02,1.02865427332761966e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"893_2": [ +[[3,0,0,4,["4595a02db1fb"],[-5.95879410287297323e-02,1.40938812102575778e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["4595a02db1fb"],[-5.95879410287297323e-02,1.40938812102575778e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"894_2": [ +[[3,0,0,4,["7ac8e40bafba"],[-7.44835698048950390e-02,2.59529757314224896e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["7ac8e40bafba"],[-7.44835698048950390e-02,2.59529757314224896e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"895_2": [ +[[3,0,0,4,["8983b780ed26"],[9.53644847849735022e-02,2.86966789938325695e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["8983b780ed26"],[9.53644847849735022e-02,2.86966789938325695e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"896_2": [ +[[3,0,0,4,["dccbcfffd39"],[9.68860603940832621e-03,2.87577827471598435e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["dccbcfffd39"],[9.68860603940832621e-03,2.87577827471598435e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"897_2": [ +[[3,0,0,4,["47a618e32bfe"],[6.09720503365530353e-02,1.45281616921830142e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["47a618e32bfe"],[1.45843366762996585e-01,5.96158662513483206e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"898_2": [ +[[3,0,0,4,["5103f8fad270"],[1.76885269994171451e-01,-2.12322417853149925e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["5103f8fad270"],[1.40090236051080508e-01,1.10063311758703458e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"899_2": [ +[[3,0,0,4,["484d7cb3cb4d"],[-5.55146684332134890e-02,1.48988663397170484e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["484d7cb3cb4d"],[-5.55146684332134890e-02,1.48988663397170484e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"900_2": [ +[[3,0,0,4,["e5ee1232c504"],[-4.19135464620290443e-01,2.82804530296273504e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["e5ee1232c504"],[-4.19135464620290443e-01,2.82804530296273504e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"901_2": [ +[[3,0,0,4,["e557d9abe2e1"],[-3.36233323936354356e-02,5.03208885405044493e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["e557d9abe2e1"],[-3.36233323936354356e-02,5.03208885405044493e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"902_2": [ +[[3,0,0,4,["b66d76a61f09"],[1.04336479894563933e-01,3.87356765360115929e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["b66d76a61f09"],[1.04336479894563933e-01,3.87356765360115929e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"903_2": [ +[[3,0,0,4,["ede769d82d7b"],[-5.11377132501010134e-01,-1.10390137021845622e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["ede769d82d7b"],[-5.11377132501010134e-01,-1.10390137021845622e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"904_2": [ +[[3,0,0,4,["10f1f9fa53b81"],[-4.15901242596426690e-01,4.27187172214108291e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["10f1f9fa53b81"],[-4.15901242596426690e-01,4.27187172214108291e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"905_2": [ +[[3,0,0,4,["9c4b8d90e271"],[1.67495831956096963e-01,3.00120834040831785e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["9c4b8d90e271"],[1.67495831956096963e-01,3.00120834040831785e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"906_2": [ +[[3,0,0,4,["ab3fb8fe8a3e"],[-3.51417931765374614e-01,1.35344734687635943e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["ab3fb8fe8a3e"],[-3.51417931765374614e-01,1.35344734687635943e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"907_2": [ +[[3,0,0,4,["4dc0ec9b55b1"],[-7.28489772967675642e-02,1.54686359825661229e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["4dc0ec9b55b1"],[-7.28489772967675642e-02,1.54686359825661229e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"908_2": [ +[[3,0,0,4,["58805483faa4"],[-1.49615097668819780e-01,1.24462296934484629e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["58805483faa4"],[-1.49615097668819780e-01,1.24462296934484629e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"909_2": [ +[[3,0,0,4,["d5599a1debd4"],[-4.38390861024864020e-01,-1.67111002081369198e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d5599a1debd4"],[-4.38390861024864020e-01,-1.67111002081369198e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"910_2": [ +[[3,0,0,4,["1374840725c9a"],[-5.38853281539903972e-01,4.22137994757180612e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["1374840725c9a"],[-5.38853281539903972e-01,4.22137994757180612e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"911_2": [ +[[3,0,0,4,["902631b26bab"],[-2.51287090875931485e-01,1.93224820322740881e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["902631b26bab"],[-2.51287090875931485e-01,1.93224820322740881e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"912_2": [ +[[3,0,0,4,["855ed844405f"],[-1.23851983543033284e-01,2.65850826897053749e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["855ed844405f"],[-1.23851983543033284e-01,2.65850826897053749e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"913_2": [ +[[3,0,0,4,["3dc80fb2ec50"],[-7.01086518042605689e-02,1.16371931414708987e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["3dc80fb2ec50"],[-7.01086518042605689e-02,1.16371931414708987e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"914_2": [ +[[3,0,0,4,["ce47f66c42d0"],[1.62280224403157980e-01,4.23595870114139184e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["ce47f66c42d0"],[1.62280224403157980e-01,4.23595870114139184e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"915_2": [ +[[3,0,0,4,["f895428a7ede"],[-5.44401072031291511e-01,-4.94232076540790793e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["f895428a7ede"],[-5.44401072031291511e-01,-4.94232076540790793e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"916_2": [ +[[3,0,0,4,["102f376d3eb7a"],[-3.64929122707010556e-01,4.37136018591310682e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["102f376d3eb7a"],[-3.64929122707010556e-01,4.37136018591310682e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"917_2": [ +[[3,0,0,4,["43189eb21b2c"],[7.20371160290071977e-02,1.28765244828368153e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["43189eb21b2c"],[7.20371160290071977e-02,1.28765244828368153e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"918_2": [ +[[3,0,0,4,["bf1f8674f611"],[-3.48068066587233993e-01,2.35557773374793694e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["bf1f8674f611"],[-3.48068066587233993e-01,2.35557773374793694e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"919_2": [ +[[3,0,0,4,["92cd9d83b80f"],[-2.09143744084741262e-01,2.45914583016834970e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["92cd9d83b80f"],[-2.09143744084741262e-01,2.45914583016834970e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"920_2": [ +[[3,0,0,4,["a619a5fda4e7"],[-1.98238675090095517e-02,3.64719825685251076e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["a619a5fda4e7"],[-1.98238675090095517e-02,3.64719825685251076e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"921_2": [ +[[3,0,0,4,["e79186ee7694"],[-3.36035461913030353e-01,3.82609067757294197e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["e79186ee7694"],[3.29325125167883176e-02,5.08158420192503568e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"922_2": [ +[[3,0,0,4,["3ad70a72fe9e"],[-1.17548748824042190e-01,-5.40758938422520527e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["3ad70a72fe9e"],[-1.21356948648054727e-01,4.48820861788941927e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"923_2": [ +[[3,0,0,4,["a5a5e01d682e"],[-2.60566409058493043e-01,2.54545058880779274e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a5a5e01d682e"],[-2.60566409058493043e-01,2.54545058880779274e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"924_2": [ +[[3,0,0,4,["306f03ed41b3"],[9.61124484745152219e-02,4.58920575584866458e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["306f03ed41b3"],[9.61124484745152219e-02,4.58920575584866458e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"925_2": [ +[[3,0,0,4,["80a0eef8960d"],[-2.60784191276820843e-01,1.09544081110301422e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["80a0eef8960d"],[-2.60784191276820843e-01,1.09544081110301422e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"926_2": [ +[[3,0,0,4,["921cf667f496"],[-2.94716346760674708e-01,1.27984128777723583e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["921cf667f496"],[-2.94716346760674708e-01,1.27984128777723583e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"927_2": [ +[[3,0,0,4,["70a919db0a27"],[-1.75374121991852733e-01,1.74987417208823770e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["70a919db0a27"],[-1.75374121991852733e-01,1.74987417208823770e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"928_2": [ +[[3,0,0,4,["f5d71af76eb5"],[-1.99664173753112628e-01,5.02386008346690116e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["f5d71af76eb5"],[-1.99664173753112628e-01,5.02386008346690116e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"929_2": [ +[[3,0,0,4,["4a7eb956ba23"],[-6.98800672454430033e-02,-1.48163919511272030e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["4a7eb956ba23"],[-6.98800672454430033e-02,-1.48163919511272030e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"930_2": [ +[[3,0,0,4,["d072075b889c"],[-1.63122914480422376e-01,4.28368743846934907e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d072075b889c"],[-1.63122914480422376e-01,4.28368743846934907e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"931_2": [ +[[3,0,0,4,["f7eb511e890e"],[1.60036794590766085e-01,5.21161746998673125e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["f7eb511e890e"],[1.60036794590766085e-01,5.21161746998673125e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"932_2": [ +[[3,0,0,4,["2a48b82a99e3"],[-8.17119183125605414e-02,4.43747468218501639e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["2a48b82a99e3"],[-8.17119183125605414e-02,4.43747468218501639e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"933_2": [ +[[3,0,0,4,["d68daf9b60e1"],[-4.67846605353622436e-01,-6.10113904850679012e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d68daf9b60e1"],[-4.67846605353622436e-01,-6.10113904850679012e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"934_2": [ +[[3,0,0,4,["8e4edfc0276a"],[-8.42846151838120561e-02,3.01374869294900760e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8e4edfc0276a"],[-8.42846151838120561e-02,3.01374869294900760e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"935_2": [ +[[3,0,0,4,["3171c0c82cec"],[-9.91676814836801868e-02,4.45850342833225000e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["3171c0c82cec"],[-1.01648520132829989e-01,-3.85957599704859350e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"936_2": [ +[[3,0,0,4,["9d501eab1cd5"],[-3.43892963059241219e-01,3.75308894785003483e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["9d501eab1cd5"],[-2.69707392635734955e-01,-2.16630699727313913e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"937_2": [ +[[3,0,0,4,["4d7c68a80c2b"],[-1.07423514380135587e-01,1.32265331099601147e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["4d7c68a80c2b"],[-1.07423514380135587e-01,1.32265331099601147e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"938_2": [ +[[3,0,0,4,["573ac5816582"],[4.74182739655779062e-03,-1.91761248181432142e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["573ac5816582"],[4.74182739655779062e-03,-1.91761248181432142e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"939_2": [ +[[3,0,0,4,["be7799d3b9b6"],[-3.31157528589748007e-01,2.56443229392082195e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["be7799d3b9b6"],[-3.31157528589748007e-01,2.56443229392082195e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"940_2": [ +[[3,0,0,4,["a126c4ca0bdd"],[-2.79403720681124845e-01,2.17981062374632717e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["a126c4ca0bdd"],[-2.79403720681124845e-01,2.17981062374632717e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"941_2": [ +[[3,0,0,4,["8de7970526da"],[-6.59617273924948122e-02,3.05000434240071283e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["8de7970526da"],[-6.59617273924948122e-02,3.05000434240071283e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"942_2": [ +[[3,0,0,4,["8ea019a81284"],[9.94861233478766677e-02,2.97439739206457887e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8ea019a81284"],[9.94861233478766677e-02,2.97439739206457887e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"943_2": [ +[[3,0,0,4,["3c3dafb8b64f"],[7.41363139374387192e-02,1.09783634205164238e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["3c3dafb8b64f"],[7.41363139374387192e-02,1.09783634205164238e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"944_2": [ +[[3,0,0,4,["c9601ddb0278"],[-3.25567239212929543e-03,4.42817341889864657e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["c9601ddb0278"],[-3.25567239212929543e-03,4.42817341889864657e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"945_2": [ +[[3,0,0,4,["7d642870097b"],[2.01130188489472922e-01,1.88621933501774530e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7d642870097b"],[2.01130188489472922e-01,1.88621933501774530e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"946_2": [ +[[3,0,0,4,["5e09ea35d1e8"],[-6.53459623766752123e-02,1.96197340839582068e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5e09ea35d1e8"],[-6.53459623766752123e-02,1.96197340839582068e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"947_2": [ +[[3,0,0,4,["133cf6ef981e3"],[-5.93048679821145286e-01,3.26285883356414841e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["133cf6ef981e3"],[-5.93048679821145286e-01,3.26285883356414841e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"948_2": [ +[[3,0,0,4,["a1ada18e735d"],[2.75147452989228103e-01,2.25163192774464754e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a1ada18e735d"],[2.75147452989228103e-01,2.25163192774464754e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"949_2": [ +[[3,0,0,4,["dd887f99615b"],[-4.11730852125302249e-01,2.60383004613834457e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["dd887f99615b"],[-4.11730852125302249e-01,2.60383004613834457e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"950_2": [ +[[3,0,0,4,["9b3faea5cf57"],[-3.38172516484964381e-01,-4.68009161365699478e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["9b3faea5cf57"],[-3.38172516484964381e-01,-4.68009161365699478e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"951_2": [ +[[3,0,0,4,["7ab05698768d"],[2.69111740440964420e-01,1.91969129365493450e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7ab05698768d"],[2.69111740440964420e-01,1.91969129365493450e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"952_2": [ +[[3,0,0,4,["a72952a339ec"],[-1.50580563535638312e-01,3.35334545719252863e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["a72952a339ec"],[-1.50580563535638312e-01,3.35334545719252863e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"953_2": [ +[[3,0,0,4,["74ebb3780789"],[2.69684450656781372e-02,2.55693080576073262e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["74ebb3780789"],[2.69684450656781372e-02,2.55693080576073262e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"954_2": [ +[[3,0,0,4,["b904e3eebda9"],[-4.01544614101666308e-01,6.55595042243428405e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["b904e3eebda9"],[-4.01544614101666308e-01,6.55595042243428405e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"955_2": [ +[[3,0,0,4,["8bae26c1d3d7"],[-2.84661650700641033e-01,1.15391168595542534e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8bae26c1d3d7"],[-2.84661650700641033e-01,1.15391168595542534e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"956_2": [ +[[3,0,0,4,["de880e992c60"],[-1.82397903185810561e-01,4.54088395547068480e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["de880e992c60"],[-1.82397903185810561e-01,4.54088395547068480e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"957_2": [ +[[3,0,0,4,["7212345aa58f"],[-2.22422205285320002e-01,1.15980989820443414e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["7212345aa58f"],[-2.22422205285320002e-01,1.15980989820443414e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"958_2": [ +[[3,0,0,4,["721480f85312"],[8.23289726035545955e-02,2.36970624297858951e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["721480f85312"],[8.23289726035545955e-02,2.36970624297858951e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"959_2": [ +[[3,0,0,4,["7340e0387d5d"],[8.05269390908655708e-02,2.40311790570110567e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["7340e0387d5d"],[8.05269390908655708e-02,2.40311790570110567e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"960_2": [ +[[3,0,0,4,["cbd6cce5170f"],[-2.24684414429912910e-01,3.87868721715568965e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["cbd6cce5170f"],[-2.24684414429912910e-01,3.87868721715568965e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"961_2": [ +[[3,0,0,4,["3bdaff918393"],[6.24074691788711888e-03,1.31475521880484059e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["3bdaff918393"],[6.24074691788711888e-03,1.31475521880484059e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"962_2": [ +[[3,0,0,4,["5fdfdb08a514"],[-1.05462537449442978e-01,1.82556813806967255e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["5fdfdb08a514"],[-1.05462537449442964e-01,1.82556813806967339e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"963_2": [ +[[3,0,0,4,["a0f654b7cc2f"],[-3.48594533798422757e-01,6.13947176336771538e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["a0f654b7cc2f"],[-3.48594533798422757e-01,6.13947176336771538e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"964_2": [ +[[3,0,0,4,["547ae8540fef"],[1.39505329022279245e-01,-1.22679006508837535e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["547ae8540fef"],[1.39505329022279245e-01,-1.22679006508837535e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"965_2": [ +[[3,0,0,4,["783cb7824bda"],[-1.73114425020022417e-01,1.99852578478884740e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["783cb7824bda"],[-1.73114425020022417e-01,1.99852578478884740e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"966_2": [ +[[3,0,0,4,["48d2a9914a67"],[3.92891777845198742e-02,1.55244774565218374e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["48d2a9914a67"],[3.92891777845198742e-02,1.55244774565218374e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"967_2": [ +[[3,0,0,4,["d9cd03607f1d"],[-4.58275669128686225e-01,1.39196436686637282e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d9cd03607f1d"],[-4.58275669128686225e-01,1.39196436686637282e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"968_2": [ +[[3,0,0,4,["5a235059408f"],[9.77781932558352551e-02,1.72420370881570639e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["5a235059408f"],[9.77781932558352551e-02,1.72420370881570639e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"969_2": [ +[[3,0,0,4,["1d1fdbee25f4"],[-1.79452595102096435e-02,-6.14798625192223627e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["1d1fdbee25f4"],[-1.79452595102096435e-02,-6.14798625192223627e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"970_2": [ +[[3,0,0,4,["e4e59dd89d62"],[-2.80638465098810630e-01,4.17855197503173181e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["e4e59dd89d62"],[-2.80638465098810630e-01,4.17855197503173181e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"971_2": [ +[[3,0,0,4,["89504b252716"],[-2.92618516195996992e-01,7.45102064875784592e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["89504b252716"],[-2.92618516195996992e-01,7.45102064875784592e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"972_2": [ +[[3,0,0,4,["9097342d112a"],[-2.21833692133437177e-01,2.27787657803017518e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9097342d112a"],[-2.21833692133437177e-01,2.27787657803017518e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"973_2": [ +[[3,0,0,4,["503248d4455a"],[7.67475376507152224e-02,-1.58778079601508998e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["503248d4455a"],[7.67475376507152224e-02,-1.58778079601508998e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"974_2": [ +[[3,0,0,4,["4eec0a1354d3"],[1.57994397759098210e-01,7.18181772796942508e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["4eec0a1354d3"],[1.57994397759098210e-01,7.18181772796942508e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"975_2": [ +[[3,0,0,4,["38463ad8a54c"],[-1.04644291827005242e-01,6.60551385642832722e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["38463ad8a54c"],[-1.04644291827005242e-01,6.60551385642832722e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"976_2": [ +[[3,0,0,4,["2f2837dd2dc5"],[-5.90107156464438481e-02,-8.52721243721090150e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["2f2837dd2dc5"],[-5.90107156464438481e-02,-8.52721243721090150e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"977_2": [ +[[3,0,0,4,["8c36907e1aa4"],[-1.04887969683492829e-01,2.89943290576997248e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["8c36907e1aa4"],[-1.04887969683492829e-01,2.89943290576997248e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"978_2": [ +[[3,0,0,4,["4a1780267fe1"],[-1.30388111070133567e-01,9.76984728648421785e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["4a1780267fe1"],[-1.30388111070133567e-01,9.76984728648421785e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"979_2": [ +[[3,0,0,4,["d52cf96f932c"],[-2.25083468757364097e-01,4.11206162538847508e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["d52cf96f932c"],[-2.25083468757364097e-01,4.11206162538847508e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"980_2": [ +[[3,0,0,4,["56451f30c423"],[1.89687286639695946e-01,-2.91947045020790608e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["56451f30c423"],[1.89687286639695946e-01,-2.91947045020790608e-03]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"981_2": [ +[[3,0,0,4,["8875f3a8c7cf"],[-1.54180263341785584e-01,2.57442555582339472e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["8875f3a8c7cf"],[-1.54180263341785584e-01,2.57442555582339472e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"982_2": [ +[[3,0,0,4,["f4b8beec77a3"],[-6.79172685779655116e-02,5.33845662296865031e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["f4b8beec77a3"],[-6.79172685779655116e-02,5.33845662296865031e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"983_2": [ +[[3,0,0,4,["7dd6968d51f9"],[-1.83750534991381831e-01,2.06906660078428950e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["7dd6968d51f9"],[-1.83750534991381831e-01,2.06906660078428950e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"984_2": [ +[[3,0,0,4,["a9cf787a3a1a"],[1.94985117387958373e-01,3.18466837370397771e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a9cf787a3a1a"],[1.94985117387958373e-01,3.18466837370397771e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"985_2": [ +[[3,0,0,4,["8e2bb0e6b7f5"],[1.00969848251340533e-01,2.95882978076626502e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["8e2bb0e6b7f5"],[1.00969848251340533e-01,2.95882978076626502e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"986_2": [ +[[3,0,0,4,["5c335da4cf41"],[1.47917021359614320e-01,1.38667487737629214e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["5c335da4cf41"],[2.02645849765678732e-01,-6.54040794691859717e-03]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"987_2": [ +[[3,0,0,4,["943675199011"],[-3.24263358201110519e-01,3.28515563995319254e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["943675199011"],[-3.24263358201110519e-01,3.28515563995319254e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"988_2": [ +[[3,0,0,4,["9f7a4926ed97"],[-2.82169748500171291e-01,2.08248176917063821e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9f7a4926ed97"],[-2.82169748500171291e-01,2.08248176917063821e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"989_2": [ +[[3,0,0,4,["a8d24c010708"],[-3.35071632897344762e-01,1.59837037045656327e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["a8d24c010708"],[-3.35071632897344762e-01,1.59837037045656327e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"990_2": [ +[[3,0,0,4,["a2b30aa8075c"],[2.95676519197875187e-01,2.01449066442925123e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a2b30aa8075c"],[2.95676519197875187e-01,2.01449066442925123e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"991_2": [ +[[3,0,0,4,["3b71b41c1022"],[-5.48542687582514593e-02,1.18652798511670113e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["3b71b41c1022"],[-1.22688023850352060e-01,4.51123730183740357e-02]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"992_2": [ +[[3,0,0,4,["bbd069ef6683"],[-3.20065544417333925e-01,2.61023625388367597e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["bbd069ef6683"],[-3.20065544417333925e-01,2.61023625388367597e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"993_2": [ +[[3,0,0,4,["a086d2288d26"],[-3.23789112419013592e-01,1.40609026502963697e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a086d2288d26"],[-3.23789112419013592e-01,1.40609026502963697e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"994_2": [ +[[3,0,0,4,["b6a9894ffd35"],[-3.71650269976911307e-01,1.52386762670980419e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["b6a9894ffd35"],[-3.71650269976911307e-01,1.52386762670980419e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"995_2": [ +[[3,0,0,4,["b1d6f63e6273"],[-3.16199762396054962e-01,2.30122337631248230e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["b1d6f63e6273"],[-3.16199762396054962e-01,2.30122337631248230e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"996_2": [ +[[3,0,0,4,["8857366fd27e"],[-2.97428246168056187e-01,-3.77658618128232787e-02]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["8857366fd27e"],[-2.97428246168056187e-01,-3.77658618128232787e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"997_2": [ +[[3,0,0,4,["92fa8ff264da"],[-2.12718034285146962e-01,2.43342462160650141e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["92fa8ff264da"],[-2.12718034285146962e-01,2.43342462160650141e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"998_2": [ +[[3,0,0,4,["7c7b8b6e7bc5"],[-2.01992220413799550e-01,1.84750638657051214e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["7c7b8b6e7bc5"],[-2.01992220413799550e-01,1.84750638657051214e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"999_2": [ +[[3,0,0,4,["56c06787823f"],[-1.98524221596729222e-02,1.89732954403378895e-01]],[["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["56c06787823f"],[-1.98524221596729222e-02,1.89732954403378895e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1000_2": [ +[[3,0,0,4,["55ed78f3d0e1"],[-1.86111011517489378e-01,3.26708194583063480e-02]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["55ed78f3d0e1"],[-1.86111011517489378e-01,3.26708194583063480e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1001_2": [ +[[3,0,0,4,["c791d820e83e"],[7.87638357552338242e-02,4.31732522945952324e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["c791d820e83e"],[7.87638357552338242e-02,4.31732522945952324e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1002_2": [ +[[3,0,0,4,["55f7ba6808a3"],[1.88551575768944379e-01,-1.36489790281756201e-02]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["55f7ba6808a3"],[1.88551575768944379e-01,-1.36489790281756201e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1003_2": [ +[[3,0,0,4,["a5ea4fed2581"],[-2.51199252370480408e-01,-2.64604609133996638e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["a5ea4fed2581"],[-2.51199252370480408e-01,-2.64604609133996638e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1004_2": [ +[[3,0,0,4,["ce077d66049a"],[-3.83903118961318235e-01,-2.40592171691990764e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["ce077d66049a"],[-3.83903118961318235e-01,-2.40592171691990764e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1005_2": [ +[[3,0,0,4,["d185c5ee6bb4"],[-3.89384648484242479e-01,2.46303708101760721e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["d185c5ee6bb4"],[-3.89384648484242479e-01,2.46303708101760721e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1006_2": [ +[[3,0,0,4,["b8534c00c2e8"],[-5.27959917070721652e-02,4.01882680665537173e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["b8534c00c2e8"],[-5.27959917070721652e-02,4.01882680665537173e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"1007_2": [ +[[3,0,0,4,["5fef93f2d644"],[1.81987643994749315e-02,2.10178750289576832e-01]],[["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["5fef93f2d644"],[1.81987643994749315e-02,2.10178750289576832e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1008_2": [ +[[3,0,0,4,["9e7a3f2ae7d4"],[2.02616911908454378e-01,2.83541330133755931e-01]],[["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["9e7a3f2ae7d4"],[2.02616911908454378e-01,2.83541330133755931e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1009_2": [ +[[3,0,0,4,["864d51691aa5"],[-7.36433515119352955e-03,2.95241441273614236e-01]],[["t", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["864d51691aa5"],[-7.36433515119352955e-03,2.95241441273614236e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1010_2": [ +[[3,0,0,4,["711e4fd56998"],[-2.00742565474551493e-01,1.46897880307402112e-01]],[["t", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["711e4fd56998"],[-2.00742565474551493e-01,1.46897880307402112e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1011_2": [ +[[3,0,0,4,["2ce5b6d0a702"],[-1.16308670779126239e-02,9.80427748172647551e-02]],[["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["2ce5b6d0a702"],[-1.16308670779126239e-02,9.80427748172647551e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1012_2": [ +[[3,0,0,4,["a0999e83ddee"],[3.37960888308699747e-01,1.02502459846808586e-01]],[["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["a0999e83ddee"],[3.11454620344891187e-01,-1.66494251452930897e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]]]] +] +,"1013_2": [ +[[3,0,0,4,["82aa7f7d8f3f"],[-2.78231383537631105e-01,7.17648091058564336e-02]],[["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["82aa7f7d8f3f"],[-2.78231383537631105e-01,7.17648091058564336e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1014_2": [ +[[3,0,0,4,["8ae1bdb676f9"],[2.22583106107570483e-01,2.09113733639476163e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8ae1bdb676f9"],[2.22583106107570483e-01,2.09113733639476163e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1015_2": [ +[[3,0,0,4,["ffb89076692"],[9.05778428270775926e-03,3.39587881091733476e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["ffb89076692"],[9.05778428270775926e-03,3.39587881091733476e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1016_2": [ +[[3,0,0,4,["321a1a62a505"],[9.88185043125060225e-02,-4.87187743957643027e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["321a1a62a505"],[9.88185043125060225e-02,-4.87187743957643027e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1017_2": [ +[[3,0,0,4,["cf3a53f8866f"],[-3.66921353023500929e-01,2.70240930446920546e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["cf3a53f8866f"],[-3.66921353023500929e-01,2.70240930446920546e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1018_2": [ +[[3,0,0,4,["54dfce878fdc"],[-1.53025431549825341e-01,-1.06854437051047940e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["54dfce878fdc"],[-1.53025431549825341e-01,-1.06854437051047940e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1019_2": [ +[[3,0,0,4,["c2f0fa64eb03"],[3.13938373900674528e-01,2.91906948381701836e-01]],[["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["c2f0fa64eb03"],[3.13938373900674528e-01,2.91906948381701836e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1020_2": [ +[[3,0,0,4,["a0c89a757b1d"],[1.40046066153621168e-01,3.24648495260263514e-01]],[["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a0c89a757b1d"],[1.40046066153621168e-01,3.24648495260263514e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1021_2": [ +[[3,0,0,4,["a6f4184179b7"],[1.46353286639930830e-01,3.36702455412811907e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["a6f4184179b7"],[1.46353286639930830e-01,3.36702455412811907e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"1022_2": [ +[[3,0,0,4,["93f1a5da12ff"],[6.54570420442583678e-02,3.18679131085722045e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["93f1a5da12ff"],[6.54570420442583678e-02,3.18679131085722045e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"1023_2": [ +[[3,0,0,4,["8c13645460fc"],[6.86521854065944015e-03,3.07953317214374578e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["8c13645460fc"],[6.86521854065944015e-03,3.07953317214374578e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"1024_2": [ +[[3,0,0,4,["31eaf1538da2"],[-5.97268236599818453e-02,9.20989755583988823e-02]],[["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["31eaf1538da2"],[-5.97268236599818453e-02,9.20989755583988823e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1025_2": [ +[[3,0,0,4,["9736fefd41ff"],[-1.01765811627529901e-01,3.16569968121172662e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["9736fefd41ff"],[-1.01765811627529901e-01,3.16569968121172662e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1026_2": [ +[[3,0,0,4,["d9e6da39de40"],[2.73011907529123743e-01,3.93788518378257013e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d9e6da39de40"],[2.73011907529123743e-01,3.93788518378257013e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1027_2": [ +[[3,0,0,4,["2f36408b140e"],[-5.59095506178051010e-02,-8.74799318024482159e-02]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["2f36408b140e"],[-5.59095506178051010e-02,-8.74799318024482159e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1028_2": [ +[[3,0,0,4,["bd5e2f83f87f"],[-4.09585238445702715e-01,7.51614901225507170e-02]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["bd5e2f83f87f"],[-4.09585238445702715e-01,7.51614901225507170e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1029_2": [ +[[3,0,0,4,["13073773382c8"],[-4.90051949755351490e-01,4.56149672360044223e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["13073773382c8"],[-4.90051949755351490e-01,4.56149672360044223e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1030_2": [ +[[3,0,0,4,["bfaad9cb810c"],[-2.62023225505094715e-01,3.30136479746983291e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["bfaad9cb810c"],[-2.62023225505094715e-01,3.30136479746983291e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1031_2": [ +[[3,0,0,4,["d261770dff87"],[-4.76473151460709357e-02,4.60171919269144025e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["d261770dff87"],[-4.76473151460709357e-02,4.60171919269144025e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"1032_2": [ +[[3,0,0,4,["42386ff8196f"],[-3.36411792254439693e-02,1.41681159877229068e-01]],[["tdg", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["42386ff8196f"],[-3.36411792254439693e-02,1.41681159877229068e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1033_2": [ +[[3,0,0,4,["c2231ec993a2"],[-1.43726624215148868e-01,4.01990892262277522e-01]],[["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["c2231ec993a2"],[-1.43726624215148868e-01,4.01990892262277522e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1034_2": [ +[[3,0,0,4,["7d7fe344951a"],[-2.75752651546026684e-01,1.11120922448365300e-02]],[["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["7d7fe344951a"],[-2.75752651546026684e-01,1.11120922448365300e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1035_2": [ +[[3,0,0,4,["105f35fad9648"],[-1.73133678201798119e-01,5.49401293567092108e-01]],[["tdg", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["105f35fad9648"],[-1.73133678201798119e-01,5.49401293567092108e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1036_2": [ +[[3,0,0,4,["4a0273516928"],[-7.05593256639644451e-04,1.62747240662164089e-01]],[["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["4a0273516928"],[-7.05593256639644451e-04,1.62747240662164089e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1037_2": [ +[[3,0,0,4,["4aec6179a187"],[-6.91450154982990173e-02,1.49546770731156575e-01]],[["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["4aec6179a187"],[-1.54638445032646843e-01,5.68526263444545377e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]]]] +] +,"1038_2": [ +[[3,0,0,4,["c3ce93574a28"],[-4.07741829459745908e-01,1.38380584368446635e-01]],[["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c3ce93574a28"],[-4.07741829459745908e-01,1.38380584368446635e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1039_2": [ +[[3,0,0,4,["9ca6f07f6288"],[2.67407861686547121e-01,2.17164975742884320e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["9ca6f07f6288"],[2.67407861686547121e-01,2.17164975742884320e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1040_2": [ +[[3,0,0,4,["7aa920cdf4b6"],[-2.49762501278924354e-01,1.01857389563846851e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["7aa920cdf4b6"],[-2.49762501278924354e-01,1.01857389563846851e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1041_2": [ +[[3,0,0,4,["51f28367727f"],[-1.72823096333181631e-01,5.10458573726928072e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["51f28367727f"],[-1.72823096333181631e-01,5.10458573726928072e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1042_2": [ +[[3,0,0,4,["110575441505e"],[-4.12465717795576059e-01,4.34205767325084202e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["110575441505e"],[-4.12465717795576059e-01,4.34205767325084202e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1043_2": [ +[[3,0,0,4,["d982fae565f8"],[-4.59386973208980254e-01,1.33218184377344950e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["d982fae565f8"],[-4.59386973208980254e-01,1.33218184377344950e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1044_2": [ +[[3,0,0,4,["96616480c58a"],[-2.48947204675473877e-01,2.17672279229753629e-01]],[["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["96616480c58a"],[-2.48947204675473877e-01,2.17672279229753629e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1045_2": [ +[[3,0,0,4,["109941fe435a6"],[-2.58196369185835550e-01,5.23838194016423730e-01]],[["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["109941fe435a6"],[-2.58196369185835550e-01,5.23838194016423730e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1046_2": [ +[[3,0,0,5,["e14d88258140"],[2.12655309369402384e-02,4.94989636088452145e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["e14d8825813f"],[2.12655309369402384e-02,4.94989636088452090e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1047_2": [ +[[3,0,0,5,["fce22fb1196d"],[-6.37652335798674363e-02,5.52428846333558821e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["fce22fb1196d"],[-6.37652335798674641e-02,5.52428846333558821e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1048_2": [ +[[3,0,0,5,["a3bd7c4718f4"],[-2.91295832087547613e-01,2.11650733320533468e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["a3bd7c4718f4"],[-2.91295832087547557e-01,2.11650733320533413e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1049_2": [ +[[3,0,0,5,["b0ca094b1598"],[-9.52594988334760084e-02,3.76912115064154118e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["b0ca094b1598"],[-9.52594988334759529e-02,3.76912115064154118e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1050_2": [ +[[3,0,0,5,["5cf9443b6809"],[1.73425840290149735e-01,1.08276596170986561e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["5cf9443b6809"],[1.73425840290149735e-01,1.08276596170986589e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1051_2": [ +[[3,0,0,5,["ba2212e3ba0e"],[3.46899978905214290e-01,2.17246204536315435e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["ba2212e3ba0e"],[3.46899978905214346e-01,2.17246204536315463e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1052_2": [ +[[3,0,0,5,["2834f6264e73"],[3.56114831538689586e-02,-8.09270515287894565e-02]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["2834f6264e74"],[3.56114831538690141e-02,-8.09270515287894565e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1053_2": [ +[[3,0,0,5,["bc6f1e592338"],[-1.85860759598692138e-01,3.70349832610952057e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["bc6f1e592338"],[-1.85860759598692138e-01,3.70349832610952001e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1054_2": [ +[[3,0,0,5,["9153b6cc7e63"],[-2.09721986858450504e-01,2.41135745534807155e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9153b6cc7e63"],[-2.09721986858450476e-01,2.41135745534807100e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1055_2": [ +[[3,0,0,5,["a2b496f72ab8"],[-3.36610111213254237e-01,1.21282641129864727e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["a2b496f72ab8"],[-3.36610111213254182e-01,1.21282641129864727e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1056_2": [ +[[3,0,0,5,["6490f51b44aa"],[-1.49435742231845692e-01,-1.63018943505138070e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6490f51b44aa"],[-1.49435742231845636e-01,-1.63018943505138014e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1057_2": [ +[[3,0,0,5,["ce65b41453fa"],[-4.03463199442966824e-01,2.07888472875534303e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["ce65b41453fa"],[-4.03463199442966824e-01,2.07888472875534358e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1058_2": [ +[[3,0,0,5,["81119f56c40e"],[1.31997756188262483e-01,2.51263678377379507e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["81119f56c40e"],[1.31997756188262566e-01,2.51263678377379618e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1059_2": [ +[[3,0,0,5,["f3f0cf0a193d"],[3.03357431736172856e-01,4.42416864688157330e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["f3f0cf0a193d"],[3.03357431736172856e-01,4.42416864688157274e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1060_2": [ +[[3,0,0,5,["e43f711f7169"],[2.23398070325925263e-01,4.49465528367289147e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["e43f711f7169"],[2.23398070325925263e-01,4.49465528367289147e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1061_2": [ +[[3,0,0,5,["64fba94af3ad"],[-1.83995780600847952e-01,1.24330238464834125e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["64fba94af3ad"],[-1.83995780600848008e-01,1.24330238464834097e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1062_2": [ +[[3,0,0,5,["e42f13e0c8c8"],[1.21278939235184027e-01,4.86904805406676244e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["e42f13e0c8c8"],[1.21278939235184124e-01,4.86904805406676244e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1063_2": [ +[[3,0,0,5,["57f0be8e4f65"],[7.10098770868707596e-02,1.79873796415380427e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["57f0be8e4f65"],[7.10098770868708151e-02,1.79873796415380427e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1064_2": [ +[[3,0,0,5,["e4cae4b69448"],[-2.79705767830088159e-01,4.18203971923204021e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["e4cae4b69448"],[-2.79705767830088103e-01,4.18203971923204076e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1065_2": [ +[[3,0,0,5,["d851bc83d7ca"],[-2.12058618797654364e-01,4.25808873326494197e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["d851bc83d7ca"],[-2.12058618797654308e-01,4.25808873326494197e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1066_2": [ +[[3,0,0,5,["a6f5a6eed1b4"],[3.10260167639266671e-01,-1.96306594765938286e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a6f5a6eed1b4"],[3.10260167639266671e-01,-1.96306594765938258e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"1067_2": [ +[[3,0,0,5,["7976a654172a"],[1.23800613249375302e-01,2.36677747663487897e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["7976a654172a"],[1.23800613249375246e-01,2.36677747663487925e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1068_2": [ +[[3,0,0,5,["a4037f5c19d7"],[1.87633317391946025e-02,-3.60181458814868294e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a4037f5c19d7"],[1.87633317391945886e-02,-3.60181458814868238e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1069_2": [ +[[3,0,0,5,["45217b96dba8"],[1.50599556465470796e-01,-2.07345294595363550e-02]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["45217b96dba8"],[1.50599556465470852e-01,-2.07345294595363550e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"1070_2": [ +[[3,0,0,5,["7521293eec64"],[2.67792261513519064e-02,2.56174692306269380e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["7521293eec64"],[2.67792261513519481e-02,2.56174692306269325e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1071_2": [ +[[3,0,0,5,["1ed591d68446"],[-6.06643410810375622e-02,3.02884346753254444e-02]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["1ed591d68446"],[-6.06643410810375344e-02,3.02884346753253819e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1072_2": [ +[[3,0,0,5,["6cfd00344d92"],[4.73721208022654938e-02,2.34939402956358429e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["6cfd00344d92"],[4.73721208022654661e-02,2.34939402956358456e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1073_2": [ +[[3,0,0,5,["665b80c02966"],[2.14555631402465447e-01,6.80423237049588708e-02]],[["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["665b80c02966"],[2.14555631402465502e-01,6.80423237049589125e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1074_2": [ +[[3,0,0,5,["5ae0d20d04a4"],[-1.19226278123281376e-01,1.60382149125527840e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["5ae0d20d04a4"],[-1.19226278123281362e-01,1.60382149125527756e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1075_2": [ +[[3,0,0,5,["de955d4a2f5b"],[-1.40159069957437377e-01,4.68969710605428469e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["de955d4a2f5b"],[-1.40159069957437377e-01,4.68969710605428469e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +] +,"1076_2": [ +[[3,0,0,5,["a250d03b850e"],[-8.99514330239163384e-02,3.45415708375436614e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a250d03b850e"],[-8.99514330239163384e-02,3.45415708375436614e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1077_2": [ +[[3,0,0,5,["73751b5cf73b"],[-1.95441018650487686e-01,1.62064110496687952e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["73751b5cf73b"],[-1.95441018650487630e-01,1.62064110496687952e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1078_2": [ +[[3,0,0,5,["8a4253cfbcf6"],[-2.90578656085197784e-01,8.94499850460831747e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["8a4253cfbcf6"],[-2.90578656085197784e-01,8.94499850460831747e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1079_2": [ +[[3,0,0,5,["1bec1ce0e5e2"],[1.71543795359682810e-02,5.89568566158502408e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["1bec1ce0e5e2"],[1.71543795359682810e-02,5.89568566158502408e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1080_2": [ +[[3,0,0,5,["84500f12185c"],[-2.67812685838818343e-01,1.13724980779888074e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["84500f12185c"],[-2.67812685838818343e-01,1.13724980779888074e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1081_2": [ +[[3,0,0,5,["e42ce3e1f7c8"],[-2.32376850608185359e-01,4.44710032493679797e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["e42ce3e1f7c8"],[-2.32376850608185359e-01,4.44710032493679797e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1082_2": [ +[[3,0,0,5,["631977dedf7e"],[-1.77090629764455693e-01,-1.26999758608940971e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["631977dedf7e"],[-1.77090629764455748e-01,-1.26999758608941055e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1083_2": [ +[[3,0,0,5,["519a1fa565de"],[-1.64137383311419416e-01,7.25214039392177573e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["519a1fa565de"],[-1.64137383311419416e-01,7.25214039392177434e-02]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1084_2": [ +[[3,0,0,5,["90029ddabc4f"],[-1.24930008873298221e-01,2.90998060838630557e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["90029ddabc4f"],[-1.24930008873298248e-01,2.90998060838630557e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1085_2": [ +[[3,0,0,5,["3ba0206df1d4"],[1.12802306596775676e-01,6.68395852275075752e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["3ba0206df1d4"],[1.12802306596775689e-01,6.68395852275075752e-02]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1086_2": [ +[[3,0,0,5,["a37bfd568848"],[2.51295983396058048e-02,3.58626493428645832e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["a37bfd568848"],[2.51295983396057770e-02,3.58626493428645776e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"1087_2": [ +[[3,0,0,5,["710fe3e7d90b"],[1.69515264481807870e-01,1.81877774104140910e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["710fe3e7d90b"],[1.69515264481807870e-01,1.81877774104140910e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1088_2": [ +[[3,0,0,5,["be8e09c1a684"],[-3.90609902997990033e-01,-1.51703097578023749e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["be8e09c1a684"],[-3.90609902997990033e-01,-1.51703097578023721e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1089_2": [ +[[3,0,0,5,["395fc76dd7d8"],[9.65565965052614800e-02,8.12093034904084465e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["395fc76dd7d8"],[9.65565965052614938e-02,8.12093034904084604e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1090_2": [ +[[3,0,0,5,["b0791d58f7fa"],[2.48617668580698337e-01,2.97970442096307631e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["b0791d58f7fa"],[2.48617668580698281e-01,2.97970442096307631e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1091_2": [ +[[3,0,0,5,["3b2cbacb3742"],[-6.60803235655707116e-02,-1.12099607821914790e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3b2cbacb3742"],[-6.60803235655707116e-02,-1.12099607821914790e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1092_2": [ +[[3,0,0,5,["d200cbddd92a"],[-8.82593438840299921e-02,4.53289224202174434e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["d200cbddd92a"],[-8.82593438840299921e-02,4.53289224202174434e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1093_2": [ +[[3,0,0,5,["11e8faa2d199e"],[2.13427692042651163e-01,5.92911117960661205e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["11e8faa2d199e"],[2.13427692042651163e-01,5.92911117960661205e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1094_2": [ +[[3,0,0,5,["5f3be1786192"],[-1.23301811970660952e-01,1.69275106645674439e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["5f3be1786192"],[-1.23301811970660896e-01,1.69275106645674439e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1095_2": [ +[[3,0,0,5,["fd19d8ec7f31"],[3.43073746046503092e-01,-4.38264801321857578e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["fd19d8ec7f31"],[3.43073746046503036e-01,-4.38264801321857633e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1096_2": [ +[[3,0,0,5,["67291b243a17"],[-2.19051969760111903e-01,5.89770149042231073e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["67291b243a17"],[-2.19051969760111903e-01,5.89770149042231073e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1097_2": [ +[[3,0,0,5,["92cd3f182114"],[-3.09025271402687873e-01,-9.33617904877224597e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["92cd3f182114"],[-3.09025271402687873e-01,-9.33617904877224597e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1098_2": [ +[[3,0,0,5,["a6071f8be36a"],[-7.21184581774844957e-02,-3.57905355081383547e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a6071f8be36a"],[-7.21184581774845235e-02,-3.57905355081383547e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1099_2": [ +[[3,0,0,5,["9397ac4abd70"],[4.10978603204118914e-02,3.21946722320075207e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["9397ac4abd70"],[4.10978603204118914e-02,3.21946722320075207e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1100_2": [ +[[3,0,0,5,["8973dc15cbb8"],[-2.74890310326938336e-01,1.25687227954557335e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["8973dc15cbb8"],[-2.74890310326938447e-01,1.25687227954557362e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1101_2": [ +[[3,0,0,5,["d829c900a802"],[4.48111027556683750e-01,1.58594405156498586e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d829c900a802"],[4.48111027556683750e-01,1.58594405156498586e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1102_2": [ +[[3,0,0,5,["6eb23f52528b"],[-1.88752961208261849e-01,-1.53712110994706663e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6eb23f52528b"],[-1.88752961208261905e-01,-1.53712110994706691e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1103_2": [ +[[3,0,0,5,["82364c99a0d1"],[2.77954076962683316e-01,-6.87881654420780808e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["82364c99a0d1"],[2.77954076962683316e-01,-6.87881654420781086e-02]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"1104_2": [ +[[3,0,0,5,["792a473b88eb"],[1.30507294804966145e-01,2.32294584709564184e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["792a473b88eb"],[1.30507294804966117e-01,2.32294584709564295e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1105_2": [ +[[3,0,0,5,["bc5b947309ed"],[6.86402600194955248e-02,4.08476034488749695e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["bc5b947309ed"],[6.86402600194955526e-02,4.08476034488749695e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +] +,"1106_2": [ +[[3,0,0,5,["72528ceb8518"],[-1.06805549231530544e-01,2.27581645789658615e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["72528ceb8518"],[-1.06805549231530544e-01,2.27581645789658615e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1107_2": [ +[[3,0,0,5,["a990d33a68fe"],[-9.73067208333256578e-02,3.59958507558346685e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a990d33a68fe"],[-9.73067208333256162e-02,3.59958507558346796e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1108_2": [ +[[3,0,0,5,["14cead9a562b"],[4.57445946410806326e-02,-1.01332650049182349e-03]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["14cead9a562b"],[4.57445946410806048e-02,-1.01332650049185125e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1109_2": [ +[[3,0,0,5,["3350b1035ec3"],[-1.11601767731066434e-01,1.66931241216784487e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["3350b1035ec3"],[-1.11601767731066406e-01,1.66931241216784487e-02]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1110_2": [ +[[3,0,0,5,["88df1808ed28"],[-2.97736259475513632e-01,4.40931049205086356e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["88df1808ed28"],[-2.97736259475513687e-01,4.40931049205086634e-02]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1111_2": [ +[[3,0,0,5,["78a5a597bb7f"],[1.71094998663798903e-01,2.02764909649427671e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["78a5a597bb7f"],[1.71094998663798875e-01,2.02764909649427838e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1112_2": [ +[[3,0,0,5,["5c290c2d6e65"],[1.27112064170075978e-01,-1.57843933925985058e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5c290c2d6e65"],[1.27112064170076033e-01,-1.57843933925985058e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1113_2": [ +[[3,0,0,5,["dc6254fa0bbd"],[-9.12491679128270977e-02,4.75961778024484639e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["dc6254fa0bbd"],[-9.12491679128270977e-02,4.75961778024484694e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1114_2": [ +[[3,0,0,5,["4ed636b0c989"],[1.61520788499857904e-02,1.72609821431651628e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["4ed636b0c989"],[1.61520788499858389e-02,1.72609821431651655e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"1115_2": [ +[[3,0,0,5,["4a06a8931361"],[1.18677882843493787e-01,1.11420327171954769e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["4a06a8931361"],[1.18677882843493787e-01,1.11420327171954714e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1116_2": [ +[[3,0,0,5,["85d931b234dc"],[-1.39408354547089219e-01,2.59227428919717173e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["85d931b234dc"],[-1.39408354547089219e-01,2.59227428919717173e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1117_2": [ +[[3,0,0,5,["104063b49e32b"],[-3.68745357549988162e-01,4.37014434277454678e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["104063b49e32b"],[-3.68745357549988162e-01,4.37014434277454678e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1118_2": [ +[[3,0,0,5,["c6a824fabe0"],[-2.56433190093176208e-02,-9.37465105162587492e-03]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["c6a824fabe0"],[-2.56433190093176208e-02,-9.37465105162588880e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1119_2": [ +[[3,0,0,5,["623d803d43d2"],[-2.14773590043392998e-01,-2.32889561562928948e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["623d803d43d2"],[-2.14773590043393026e-01,-2.32889561562928948e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1120_2": [ +[[3,0,0,5,["bed38a2eeb3a"],[-3.83916018892078992e-01,1.69408124350296896e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["bed38a2eeb3a"],[-3.83916018892078992e-01,1.69408124350296896e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1121_2": [ +[[3,0,0,5,["b9126d160539"],[-3.78417081287527046e-01,1.49770705972786689e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b9126d160539"],[-3.78417081287527046e-01,1.49770705972786744e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1122_2": [ +[[3,0,0,5,["aa774a08b958"],[-6.86420432394341112e-02,3.68520379024564415e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["aa774a08b958"],[-6.86420432394341112e-02,3.68520379024564415e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +] +,"1123_2": [ +[[3,0,0,5,["f21a8cd25559"],[-2.54476226393313520e-01,4.67635288660145143e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["f21a8cd25559"],[-2.54476226393313465e-01,4.67635288660145254e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1124_2": [ +[[3,0,0,5,["cb7f763cd09f"],[4.35746370497552687e-02,4.45370033719789671e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["cb7f763cd09f"],[4.35746370497552271e-02,4.45370033719789671e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"1125_2": [ +[[3,0,0,5,["640a70a05960"],[-2.17782899223141091e-01,-3.10980809119044341e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["640a70a05960"],[-2.17782899223141174e-01,-3.10980809119043855e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1126_2": [ +[[3,0,0,5,["ee4b0b87a088"],[-2.16810267770081611e-01,4.77055613880524809e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["ee4b0b87a088"],[-2.16810267770081611e-01,4.77055613880524809e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1127_2": [ +[[3,0,0,5,["3160edde50d7"],[-1.80136711096118701e-02,1.07080141129716894e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3160edde50d7"],[-1.80136711096118701e-02,1.07080141129716894e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1128_2": [ +[[3,0,0,5,["8e6dcb32325b"],[-2.61883116878204925e-01,1.71797100852484341e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["8e6dcb32325b"],[-2.61883116878204925e-01,1.71797100852484341e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1129_2": [ +[[3,0,0,5,["a2b3193b6f6b"],[-3.43509094245842361e-01,1.00040904205405567e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a2b3193b6f6b"],[-3.43509094245842361e-01,1.00040904205405567e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"1130_2": [ +[[3,0,0,5,["3d9768ff4df2"],[1.16564782620767110e-01,6.89704418473822828e-02]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3d9768ff4df2"],[1.16564782620767110e-01,6.89704418473822828e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1131_2": [ +[[3,0,0,5,["edfc34efbcca"],[-4.10342861569788608e-01,3.24804875654485237e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["edfc34efbcca"],[-4.10342861569788608e-01,3.24804875654485237e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +] +,"1132_2": [ +[[3,0,0,5,["e99b9116db29"],[-2.10501610509151171e-01,4.68599752408354275e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["e99b9116db29"],[-2.10501610509151171e-01,4.68599752408354275e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1133_2": [ +[[3,0,0,5,["89a0856466d7"],[-6.78945017336966827e-02,2.94931117039673341e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["89a0856466d7"],[-6.78945017336966827e-02,2.94931117039673341e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1134_2": [ +[[3,0,0,5,["3f56504cc4ed"],[7.96944311411179329e-02,1.14226470170157607e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3f56504cc4ed"],[7.96944311411179329e-02,1.14226470170157607e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1135_2": [ +[[3,0,0,5,["73bc95ed8a17"],[2.01050788196634120e-02,2.53712259848824562e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["73bc95ed8a17"],[2.01050788196634120e-02,2.53712259848824562e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1136_2": [ +[[3,0,0,5,["721cd4b97003"],[-1.58573946252626830e-01,1.94482219789677863e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["721cd4b97003"],[-1.58573946252626830e-01,1.94482219789677863e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1137_2": [ +[[3,0,0,5,["c17fb09a13fc"],[-2.87795453557273040e-01,3.13418443520159906e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["c17fb09a13fc"],[-2.87795453557273040e-01,3.13418443520159906e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +] +,"1138_2": [ +[[3,0,0,5,["b064ba29670b"],[-3.45187130001773479e-01,1.76938076900431618e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["b064ba29670b"],[-3.45187130001773479e-01,1.76938076900431618e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1139_2": [ +[[3,0,0,5,["af473ae60b82"],[-6.30314821081933152e-02,3.80252210844106098e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["af473ae60b82"],[-6.30314821081933152e-02,3.80252210844106098e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +] +,"1140_2": [ +[[3,0,0,5,["104eb5f9b518c"],[2.89039849402750737e-01,4.95646603964286503e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["104eb5f9b518c"],[2.89039849402750737e-01,4.95646603964286503e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1141_2": [ +[[3,0,0,5,["a6c2ef138682"],[5.63157294128271424e-02,3.62362348276903889e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["a6c2ef138682"],[5.63157294128271424e-02,3.62362348276903889e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1142_2": [ +[[3,0,0,5,["baaf7ca51c52"],[-3.36026396281650430e-01,2.35833944805757978e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["baaf7ca51c52"],[-3.36026396281650430e-01,2.35833944805757978e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1143_2": [ +[[3,0,0,5,["736ccf42be21"],[-1.04927386755270885e-01,2.31119070450319652e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["736ccf42be21"],[-1.04927386755270885e-01,2.31119070450319652e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1144_2": [ +[[3,0,0,5,["bd279a2286e6"],[1.91463875954574425e-01,3.69270394551521441e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["bd279a2286e6"],[1.91463875954574425e-01,3.69270394551521441e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1145_2": [ +[[3,0,0,5,["aa09fa257e34"],[3.02269700763984461e-01,2.20111193321647747e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["aa09fa257e34"],[3.02269700763984406e-01,2.20111193321647691e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1146_2": [ +[[3,0,0,5,["6c0bf196eb56"],[1.50471029173492032e-02,2.37120159584535362e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6c0bf196eb56"],[1.50471029173491200e-02,2.37120159584535389e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1147_2": [ +[[3,0,0,5,["7892d26c9eb4"],[-4.13814433657403724e-02,-2.61894840005424068e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["7892d26c9eb4"],[-4.13814433657404418e-02,-2.61894840005424123e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1148_2": [ +[[3,0,0,5,["a80bf0ab166c"],[5.50065758319502052e-02,3.65421617700548651e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a80bf0ab166c"],[5.50065758319502052e-02,3.65421617700548651e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]]]] +] +,"1149_2": [ +[[3,0,0,5,["6250329baede"],[-2.10228559805907239e-01,5.04325315136016986e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["6250329baede"],[-2.10228559805907295e-01,5.04325315136016569e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1150_2": [ +[[3,0,0,5,["6d4594e88d17"],[-1.64448523847572414e-01,1.75204342198311103e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6d4594e88d17"],[-1.64448523847572414e-01,1.75204342198311103e-01]],[["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1151_2": [ +[[3,0,0,5,["a719ddb9c529"],[-4.46013234882540396e-02,3.64742226071966047e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["a719ddb9c529"],[-4.46013234882540396e-02,3.64742226071966047e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1152_2": [ +[[3,0,0,5,["e417455f0db1"],[-1.88988919213205209e-01,4.64610454516239169e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["e417455f0db1"],[-1.88988919213205209e-01,4.64610454516239169e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1153_2": [ +[[3,0,0,5,["c89f6f4ee76d"],[-1.50602700096830688e-01,4.14672748994421136e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["c89f6f4ee76d"],[-1.50602700096830688e-01,4.14672748994421136e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1154_2": [ +[[3,0,0,5,["1bc7d6c6814f"],[-5.75404797569161602e-02,2.05209546623040667e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["1bc7d6c6814f"],[-5.75404797569161602e-02,2.05209546623040667e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1155_2": [ +[[3,0,0,5,["7847fd50be51"],[-1.08109134904901066e-01,2.41398606023951912e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7847fd50be51"],[-1.08109134904901066e-01,2.41398606023951912e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1156_2": [ +[[3,0,0,5,["91756aaba354"],[-9.99410005348275732e-02,3.03853052076627494e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["91756aaba354"],[-9.99410005348275732e-02,3.03853052076627494e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1157_2": [ +[[3,0,0,5,["8e51ff69c2e5"],[-8.27522849112988790e-02,3.01827039791240259e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["8e51ff69c2e5"],[-8.27522849112988929e-02,3.01827039791240259e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1158_2": [ +[[3,0,0,5,["11a0ca830f10c"],[-1.92819748886865150e-01,5.89499675234027687e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["11a0ca830f10c"],[-1.92819748886865178e-01,5.89499675234027687e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1159_2": [ +[[3,0,0,5,["cd9bd78a5c1f"],[3.68014834901099930e-01,2.62667565271576586e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["cd9bd78a5c1f"],[3.68014834901099874e-01,2.62667565271576531e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +] +,"1160_2": [ +[[3,0,0,5,["10530d120f57d"],[-9.42186296177372068e-02,5.66583902113955484e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["10530d120f57d"],[-9.42186296177372068e-02,5.66583902113955484e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +] +,"1161_2": [ +[[3,0,0,5,["bb5664b08abf"],[-2.50799598210680097e-01,3.26818236424243680e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["bb5664b08abf"],[-2.50799598210680152e-01,3.26818236424243680e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +] +,"1162_2": [ +[[3,0,0,5,["8f5a178e6fe0"],[-1.71212451029565060e-01,2.64686425447853646e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8f5a178e6fe0"],[-1.71212451029565088e-01,2.64686425447853535e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1163_2": [ +[[3,0,0,5,["45cda2dd4a52"],[-1.16930612719186311e-01,9.94443395405371633e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["45cda2dd4a52"],[-1.16930612719186269e-01,9.94443395405371633e-02]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1164_2": [ +[[3,0,0,5,["6ba77022bf68"],[-2.34305462565952527e-01,-3.38205278513457330e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["6ba77022bf68"],[-2.34305462565952471e-01,-3.38205278513456775e-02]],[["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +] +,"1165_2": [ +[[3,0,0,5,["83f8d72eac05"],[-3.17498835560612591e-02,2.88467571398088707e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["83f8d72eac05"],[-3.17498835560612591e-02,2.88467571398088707e-01]],[["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +] +,"1166_2": [ +[[3,0,0,5,["3b4189b94bcf"],[-9.30567334974615468e-02,-9.12136269480888634e-02]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["3b4189b94bcf"],[-9.30567334974615468e-02,-9.12136269480888634e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1167_2": [ +[[3,0,0,5,["710316c123ce"],[-1.02806362498815251e-01,-2.26254578305735310e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["710316c123ce"],[-2.32681222666522719e-01,-8.72910705224535233e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1168_2": [ +[[3,0,0,5,["75243497ff8e"],[-2.33573214529104012e-01,1.08626080240638884e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["75243497ff8e"],[-2.33573214529104012e-01,1.08626080240638884e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1169_2": [ +[[3,0,0,5,["6bb72e6c733e"],[-1.31190813305319315e-01,1.97220423902603220e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6bb72e6c733e"],[-2.32221812847585779e-01,4.66899854124466218e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1170_2": [ +[[3,0,0,5,["40d007a4a6cd"],[7.42090288201388559e-03,1.42331125878692344e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["40d007a4a6cd"],[7.42090288201388559e-03,1.42331125878692344e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1171_2": [ +[[3,0,0,5,["c15232d7185f"],[9.48554635807641183e-02,4.14400034258033234e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["c15232d7185f"],[3.60098015878344835e-01,2.25952132817241053e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1172_2": [ +[[3,0,0,5,["47257ba1529e"],[8.98106432244024921e-02,1.28107270983673582e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["47257ba1529e"],[-2.70798051851576238e-02,1.54091234878558886e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1173_2": [ +[[3,0,0,5,["736f7b69c310"],[-1.23217440063218983e-01,-2.21934444995102453e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["736f7b69c310"],[-2.44059238464058859e-01,-6.98034636057606461e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1174_2": [ +[[3,0,0,5,["633482987ae6"],[-1.95545149777582083e-01,9.67130787666738156e-02]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["633482987ae5"],[-2.06657775261211041e-01,-6.98848276105235866e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1175_2": [ +[[3,0,0,5,["d5372f9045cf"],[2.11950362271352555e-01,4.18225257431800057e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["d5372f9045cf"],[2.11950362271352555e-01,4.18225257431800057e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1176_2": [ +[[3,0,0,5,["d57f1d133a2d"],[3.46673597305558800e-01,3.16595172139866987e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["d57f1d133a2d"],[3.46673597305558800e-01,3.16595172139866987e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1177_2": [ +[[3,0,0,5,["aa9cbd5c7312"],[-2.14491154405178991e-01,3.07821100742709797e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["aa9cbd5c7312"],[-2.14491154405178991e-01,3.07821100742709797e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1178_2": [ +[[3,0,0,5,["8a102e508a5f"],[1.47017944713054183e-01,2.65633649175892272e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["8a102e508a5f"],[1.47017944713054183e-01,2.65633649175892272e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1179_2": [ +[[3,0,0,5,["de9538e206f2"],[-9.59332085434677351e-02,4.79971642893031292e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["de9538e206f2"],[-9.59332085434677351e-02,4.79971642893031292e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1180_2": [ +[[3,0,0,5,["8e5c25884eb0"],[1.58119918796435971e-01,2.70185434820022441e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["8e5c25884eb0"],[1.58119918796435971e-01,2.70185434820022441e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1181_2": [ +[[3,0,0,5,["951cfc109a37"],[-3.18575520474120188e-01,-7.76550350286960289e-02]],[["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["951cfc109a37"],[-2.80177312709354087e-01,1.70356508985214400e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1182_2": [ +[[3,0,0,5,["10dabdc2b463c"],[-3.88945493791947650e-01,4.47645440474807588e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["10dabdc2b463c"],[-5.91559122699211737e-01,4.15071303547391302e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1183_2": [ +[[3,0,0,5,["68833c72e750"],[1.69009965053053574e-01,1.55741764205100275e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["68833c72e750"],[2.29634149960498302e-01,-9.38203479373291016e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1184_2": [ +[[3,0,0,5,["1f7d7b7287e1"],[4.43179278000232768e-02,-5.32085713700527624e-02]],[["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["1f7d7b7287e0"],[6.89616489085449480e-02,-6.28663435748043342e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1185_2": [ +[[3,0,0,5,["d57ae8e4cd6b"],[-2.40357994433011507e-01,4.03248329407012829e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["d57ae8e4cd6b"],[1.15180860449864642e-01,4.55098396001826333e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1186_2": [ +[[3,0,0,5,["103d411ae24b6"],[-1.49425966396660337e-01,5.51483501104654161e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["103d411ae24b7"],[-4.95617837468031563e-01,2.84297609219168190e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1187_2": [ +[[3,0,0,5,["c90f050dd0db"],[-2.46363881666182727e-01,3.67132341263180395e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["c90f050dd0db"],[-2.46363881666182727e-01,3.67132341263180395e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1188_2": [ +[[3,0,0,5,["47c8a005c2cb"],[-8.14309785018858256e-02,1.35229003665996939e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["47c8a005c2cb"],[-8.14309785018858256e-02,1.35229003665996939e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1189_2": [ +[[3,0,0,5,["adfaf6b9f26b"],[-3.01412312740137744e-01,2.35633754501784975e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["adfaf6b9f26b"],[-3.01412312740137744e-01,2.35633754501784975e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1190_2": [ +[[3,0,0,5,["887d8dc731c7"],[1.34310180425887354e-01,2.68417946063637558e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["887d8dc731c7"],[1.34310180425887354e-01,2.68417946063637558e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1191_2": [ +[[3,0,0,5,["c90f2373b05b"],[-3.81528247746874216e-01,2.23424296577764969e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["c90f2373b05b"],[-3.81528247746874216e-01,2.23424296577764969e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1192_2": [ +[[3,0,0,5,["6279bef6e50f"],[-1.39987876642632431e-01,-1.65219026460563856e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6279bef6e50f"],[-2.15813870849215550e-01,-1.78411171333930640e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1193_2": [ +[[3,0,0,5,["6ca90e435eaf"],[-7.25465246977244071e-02,2.27667569065734904e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6ca90e435eaf"],[-2.12283421507916015e-01,1.09687142377359576e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1194_2": [ +[[3,0,0,5,["ec7e9c01aa98"],[-1.85196145179745891e-01,4.85964739498276621e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["ec7e9c01aa98"],[-1.85196145179745891e-01,4.85964739498276621e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1195_2": [ +[[3,0,0,5,["79b512c43ca0"],[-2.54861112534562839e-01,8.17037073934446800e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["79b512c43ca0"],[-2.54861112534562839e-01,8.17037073934446800e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"1196_2": [ +[[3,0,0,5,["6b11b462461d"],[-1.86644894042132636e-01,1.43524359273682567e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6b11b462461d"],[-1.86644894042132636e-01,1.43524359273682567e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1197_2": [ +[[3,0,0,5,["440c2f41fc76"],[1.33113621076022814e-01,6.83547265354300659e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["440c2f41fc76"],[1.33113621076022814e-01,6.83547265354300659e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1198_2": [ +[[3,0,0,5,["8d68614256ec"],[-2.40340347127651455e-01,-1.97311815056728679e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["8d68614256ec"],[-3.09466811681529896e-01,3.04257668118523145e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"1199_2": [ +[[3,0,0,5,["56bade5c375e"],[3.22501207054299507e-02,1.87974736710463330e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["56bade5c375e"],[1.55722490064618635e-01,1.10113931974830270e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1200_2": [ +[[3,0,0,5,["4b16c3ab3272"],[1.20323539983521355e-01,1.13082340853566998e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["4b16c3ab3272"],[1.65042881108724421e-01,-5.12030100871281590e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"1201_2": [ +[[3,0,0,5,["3124d9646a55"],[9.91411768383263642e-02,4.30100551651214497e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["3124d9646a55"],[9.91411768383263642e-02,4.30100551651214497e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1202_2": [ +[[3,0,0,5,["457f6ee6b908"],[-1.16964964058950502e-01,9.83634321175923809e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["457f6ee6b908"],[-1.52260169118456967e-01,-1.31532693761925445e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"1203_2": [ +[[3,0,0,5,["40811c662d57"],[8.58783215642146547e-02,-1.12895330281506404e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["40811c662d57"],[1.40554197141323223e-01,-1.91039100713731036e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1204_2": [ +[[3,0,0,5,["7ba0f85a0a6a"],[2.71313761548485965e-01,1.72657746964222092e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["7ba0f85a0a6a"],[1.79639054249885161e-01,2.04056546990443677e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"1205_2": [ +[[3,0,0,5,["b4becdcae41c"],[-3.59413847504184147e-01,1.69701693400234555e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b4becdcae41c"],[-1.34146750640410095e-01,3.74141187004702391e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1206_2": [ +[[3,0,0,5,["bae72f8a8a99"],[-6.58144023241827442e-02,4.05700521667039737e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["bae72f8a8a99"],[-3.33411400184852880e-01,2.40335779818514172e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1207_2": [ +[[3,0,0,5,["19b7311859ed"],[-5.31588998247967404e-02,-1.92857951528710159e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["19b7311859ed"],[-5.31588998247967404e-02,-1.92857951528710159e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1208_2": [ +[[3,0,0,5,["a26138b07531"],[-3.53293957413923998e-01,5.18390522176114532e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["a26138b07531"],[-3.53293957413923998e-01,5.18390522176114532e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1209_2": [ +[[3,0,0,5,["37fb181ff61a"],[-1.16177759447838744e-01,4.07076987431187198e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["37fb181ff61a"],[-5.33653917008679035e-02,1.10934771356384618e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"1210_2": [ +[[3,0,0,5,["efe2d8b2ed66"],[1.21131624978360553e-01,5.13419290309486631e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["efe2d8b2ed66"],[1.21131624978360553e-01,5.13419290309486631e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1211_2": [ +[[3,0,0,5,["5eb035cbd481"],[2.06633226171792805e-01,-2.56716965570324279e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["5eb035cbd481"],[1.64264386164569343e-01,1.27959124724487283e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"1212_2": [ +[[3,0,0,5,["dc85b2687718"],[3.26616790726587114e-01,3.58443905535648200e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["dc85b2687718"],[3.26616790726587114e-01,3.58443905535648200e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1213_2": [ +[[3,0,0,5,["d1680b1e8fd8"],[-3.75079111409285404e-01,2.67144754122302375e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d1680b1e8fd8"],[-7.63211159606373701e-02,4.54120850357223160e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1214_2": [ +[[3,0,0,5,["f17fce9459f4"],[-4.16241142429238042e-01,3.29803950220927677e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["f17fce9459f4"],[-6.11203247572212546e-02,5.27533544083878425e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1215_2": [ +[[3,0,0,5,["7ff98ebde058"],[-2.76147848576070110e-01,-5.42160280285600427e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["7ff98ebde058"],[-2.33602537406209787e-01,1.56929495270220376e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1216_2": [ +[[3,0,0,5,["489b6eaa2d54"],[-1.19930325156158965e-01,-1.05401965190107874e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["489b6eaa2d54"],[-1.59333990524141267e-01,1.02731018515138384e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1217_2": [ +[[3,0,0,5,["e8a71de25531"],[3.72728017552988941e-02,5.10249372674878021e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["e8a71de25531"],[3.87156642389581807e-01,3.34444940639594401e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1218_2": [ +[[3,0,0,5,["a2af1b8afb1b"],[-3.38089257395657539e-01,1.16952146473702515e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["a2af1b8afb1b"],[-1.56367550704916092e-01,3.21762862396670901e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"1219_2": [ +[[3,0,0,5,["7d2674b43a73"],[-2.46293892877012144e-01,1.22796147794099864e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["7d2674b43a73"],[-2.46293892877012144e-01,1.22796147794099864e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1220_2": [ +[[3,0,0,5,["3fbf876a877a"],[8.02863341932421870e-02,1.14915492774460420e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["3fbf876a877a"],[-2.44865128595637416e-02,1.38028535548865600e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1221_2": [ +[[3,0,0,5,["da3042ca4523"],[2.68752188104255663e-02,4.79048353022602236e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["da3042ca4523"],[-3.19734689471804945e-01,3.57741988405253286e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1222_2": [ +[[3,0,0,5,["229f427f2998"],[-5.47578581407301423e-02,5.28969566621214915e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["229f427f2998"],[-7.61234495744782941e-02,-1.31585605464426547e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1223_2": [ +[[3,0,0,5,["73d7ba43c20d"],[-2.23145413933599879e-01,1.22877903687218834e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["73d7ba43c20d"],[-2.44675434338347486e-01,-7.08998364279077309e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1224_2": [ +[[3,0,0,5,["df7983337069"],[3.88155403545172695e-01,3.01388233227532054e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["df7983337069"],[6.13536545159718144e-02,4.87580981486013143e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1225_2": [ +[[3,0,0,5,["d140559a80b8"],[-4.35936022596766920e-02,4.58078846275071172e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["d140559a80b8"],[-3.54735990293379488e-01,2.93085326745046226e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"1226_2": [ +[[3,0,0,5,["bb1d665b4102"],[-3.71102365125305145e-01,1.77737182746501965e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["bb1d665b4102"],[-3.71102365125305145e-01,1.77737182746501965e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1227_2": [ +[[3,0,0,5,["44eacde1c7d6"],[-1.51404771933670912e-01,6.64526069054380275e-03]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["44eacde1c7d6"],[-1.51404771933670912e-01,6.64526069054380275e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1228_2": [ +[[3,0,0,5,["88fa93f37957"],[-3.01029947226148731e-01,-1.06876009415540624e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["88fa93f37957"],[-2.20417592124226847e-01,2.05303041923449697e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1229_2": [ +[[3,0,0,5,["93bfab790cfd"],[-1.38215072673233130e-01,2.94038187077709678e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["93bfab790cfd"],[-1.38215072673233130e-01,2.94038187077709678e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1230_2": [ +[[3,0,0,5,["5ba22d265d9b"],[-2.01579125902717066e-02,2.00493394989597257e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["5ba22d265d9b"],[-1.56024035867403987e-01,1.27516442493110449e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1231_2": [ +[[3,0,0,5,["1c172b393897"],[-3.97023349108477641e-02,-4.73229734504652388e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["1c172b393897"],[-3.97023349108477641e-02,-4.73229734504652388e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1232_2": [ +[[3,0,0,5,["36b5cfb5b5c0"],[-9.06655726427374048e-02,-7.90823006207384549e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["36b5cfb5b5c0"],[-9.06655726427374048e-02,-7.90823006207384549e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1233_2": [ +[[3,0,0,5,["6773dab9bca6"],[-2.04594325421388001e-01,9.94733359991004651e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6773dab9bca6"],[-7.43317644655387549e-02,2.15008305329962568e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1234_2": [ +[[3,0,0,5,["12126272ddcc9"],[4.43927938651157497e-02,6.34293875074979141e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["12126272ddcc9"],[-4.17123054752770672e-01,4.79903945908450480e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1235_2": [ +[[3,0,0,5,["97671970b2eb"],[-8.16991373938294324e-02,-3.22758498489811751e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["97671970b2eb"],[-2.85994737036002145e-01,-1.70454708899465679e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1236_2": [ +[[3,0,0,5,["71bb24e686ea"],[-1.53609651205638797e-01,1.97364324060378821e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["71bb24e686ea"],[-2.48176077930600592e-01,3.09392258841856282e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1237_2": [ +[[3,0,0,5,["c7ac24d57a26"],[-2.04965299103041121e-01,3.88309512180909255e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["c7ac24d57a26"],[-2.04965299103041121e-01,3.88309512180909255e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1238_2": [ +[[3,0,0,5,["6555424f4aa3"],[-7.62376537117634423e-03,2.22703264872031625e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6555424f4aa3"],[1.52084172591263445e-01,1.62865804975531381e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1239_2": [ +[[3,0,0,5,["a9fa91584f17"],[1.29326627411834760e-01,3.50701528666032825e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["a9fa91584f17"],[-1.56535693861345776e-01,3.39431164323134582e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1240_2": [ +[[3,0,0,5,["40b2eb53d26b"],[8.14157160134371394e-02,1.16676836119933625e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["40b2eb53d26b"],[8.14157160134371394e-02,1.16676836119933625e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1241_2": [ +[[3,0,0,5,["c42b1f19a653"],[-4.27093965994579938e-01,-6.06511249321786544e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["c42b1f19a653"],[-3.44887861284760233e-01,2.59114217832488225e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1242_2": [ +[[3,0,0,5,["b16620bf26de"],[-1.23576590959545762e-01,3.70013864581646312e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["b16620bf26de"],[-3.49021158242133978e-01,1.74257467315311998e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1243_2": [ +[[3,0,0,5,["b827de992e61"],[-2.29247561242367226e-01,3.33826884947497682e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b827de992e61"],[-2.29247561242367226e-01,3.33826884947497682e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1244_2": [ +[[3,0,0,5,["bb271aefd18c"],[-4.11499072802508414e-01,-6.67824603642007408e-03]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["bb271aefd18c"],[-2.95696017889415297e-01,2.86251551771845691e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1245_2": [ +[[3,0,0,5,["8fd8f29d27cc"],[1.62496401100887533e-01,2.71395881320280585e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["8fd8f29d27cc"],[1.62496401100887533e-01,2.71395881320280585e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1246_2": [ +[[3,0,0,5,["4470cd48b1aa"],[9.37543055819428650e-02,-1.17733365725749911e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["4470cd48b1aa"],[-1.69557560341660196e-02,-1.49544366519021227e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1247_2": [ +[[3,0,0,5,["6bf57f1db754"],[2.07462051039297463e-01,1.15413574427850926e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6bf57f1db754"],[2.07462051039297463e-01,1.15413574427850926e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1248_2": [ +[[3,0,0,5,["ae9900a60cdc"],[-1.72768434354890643e-01,3.42876530642288846e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["ae9900a60cdc"],[-3.64616051434205501e-01,1.20284588419553390e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1249_2": [ +[[3,0,0,5,["c6dca44ac1e4"],[-2.53973752014184095e-02,4.36563772710741094e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["c6dca44ac1e4"],[-2.53973752014184095e-02,4.36563772710741094e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1250_2": [ +[[3,0,0,5,["6df05c84129c"],[6.54252361063746984e-02,2.32737141639892758e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["6df05c84129c"],[-1.18307382975993636e-01,2.10832639199090621e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1251_2": [ +[[3,0,0,5,["3919836d0bf5"],[1.12155720157322558e-01,5.64560263723324907e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["3919836d0bf5"],[1.19226509358826366e-01,-3.93856311853807081e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1252_2": [ +[[3,0,0,5,["40e81691cbe8"],[1.37303501844549813e-01,-3.89861293586028779e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["40e81691cbe8"],[1.24655593676624904e-01,6.95208807932567729e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1253_2": [ +[[3,0,0,5,["11a3ac34a7968"],[-2.36471514254689347e-01,5.73813545206048881e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["11a3ac34a7968"],[2.38536837664948626e-01,5.72958060238832889e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1254_2": [ +[[3,0,0,5,["d6eb6c4118e9"],[1.62947624377729944e-01,4.43634252348794833e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["d6eb6c4118e9"],[-1.98475418026725636e-01,4.28918158378188030e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1255_2": [ +[[3,0,0,5,["c46974cbfd29"],[1.49836117519193068e-01,4.05091599919586653e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["c46974cbfd29"],[1.49836117519193068e-01,4.05091599919586653e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1256_2": [ +[[3,0,0,5,["280bbcd7c32b"],[-6.48153621395911456e-02,5.96141065803438008e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["280bbcd7c32b"],[-6.48153621395911456e-02,5.96141065803438008e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1257_2": [ +[[3,0,0,5,["42f664bd2492"],[-1.22268044478872726e-01,-8.20590536875118459e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["42f664bd2492"],[-1.22268044478872726e-01,-8.20590536875118459e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1258_2": [ +[[3,0,0,5,["5d3936298ce4"],[-1.92663888957239848e-01,-7.00419483300759316e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5d3936298ce4"],[-1.92663888957239848e-01,-7.00419483300759316e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1259_2": [ +[[3,0,0,5,["5a23824e1df4"],[-1.15909266900698915e-01,-1.60795104846853221e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5a23824e1df4"],[-1.95659537646657444e-01,-3.17390803909661581e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1260_2": [ +[[3,0,0,5,["74215ec4eacf"],[-1.86972073857882060e-01,1.73945362526452679e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["74215ec4eacf"],[-2.55207166715827438e-01,-9.21127591901335641e-03]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1261_2": [ +[[3,0,0,5,["529ce713800d"],[-1.62625436835929449e-01,-8.09698525527394741e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["529ce713800d"],[-1.62625436835929449e-01,-8.09698525527394741e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1262_2": [ +[[3,0,0,5,["ca63f6e7f6b5"],[-2.21422797348828498e-02,4.44510243642672831e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["ca63f6e7f6b5"],[2.98659251435153261e-01,3.29973163738083497e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1263_2": [ +[[3,0,0,5,["65062e065f59"],[2.00935562655585626e-01,-9.47496261420387731e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["65062e065f59"],[7.50847957753731921e-02,-2.09081002095224733e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1264_2": [ +[[3,0,0,5,["7a62a42dc94b"],[-2.67356507249813580e-01,-3.08296022074802389e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7a62a42dc94b"],[-2.67356507249813580e-01,-3.08296022074802389e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1265_2": [ +[[3,0,0,5,["12bc3d73c28ae"],[2.75725830255706184e-01,5.98754543286848628e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["12bc3d73c28ae"],[-2.28415793502284054e-01,6.18351002146485640e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1266_2": [ +[[3,0,0,5,["65b1267712b5"],[1.81445215428003015e-01,1.30709241551241168e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["65b1267712b5"],[3.58757511783618643e-02,2.20726533307628037e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1267_2": [ +[[3,0,0,5,["a9de889ddd40"],[-3.14491889560948812e-01,2.01573371115831401e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a9de889ddd40"],[-3.14491889560948812e-01,2.01573371115831401e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1268_2": [ +[[3,0,0,5,["aec77bf4b46f"],[-3.79896499140254862e-01,5.82979836010915908e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["aec77bf4b46f"],[-3.79896499140254862e-01,5.82979836010915908e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1269_2": [ +[[3,0,0,5,["e90ca54c9074"],[-2.51666120931394621e-01,4.46431388140417496e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["e90ca54c9074"],[-2.51666120931394621e-01,4.46431388140417496e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1270_2": [ +[[3,0,0,5,["ca9fe2411ed6"],[-4.40847552477188098e-01,6.47416914804335858e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["ca9fe2411ed6"],[-4.40847552477188098e-01,6.47416914804335858e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1271_2": [ +[[3,0,0,5,["60b9e859cf1e"],[2.10969268997445586e-01,-2.71035923656736955e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["60b9e859cf1e"],[2.10969268997445586e-01,-2.71035923656736955e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1272_2": [ +[[3,0,0,5,["a0dd23165306"],[-3.51482125282458646e-01,3.99326851145224773e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["a0dd23165306"],[-3.51482125282458646e-01,3.99326851145224773e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1273_2": [ +[[3,0,0,5,["dc8c86eb6e38"],[-4.26317671343440230e-01,2.31237346357972162e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["dc8c86eb6e38"],[-4.26317671343440230e-01,2.31237346357972162e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1274_2": [ +[[3,0,0,5,["cd9dc1dbf75e"],[-2.13123607333854131e-01,3.98776095467941127e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["cd9dc1dbf75e"],[-2.13123607333854131e-01,3.98776095467941127e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1275_2": [ +[[3,0,0,5,["8816b85d3894"],[-1.78790801258314064e-01,2.39982895382570505e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8816b85d3894"],[-1.78790801258314064e-01,2.39982895382570505e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1276_2": [ +[[3,0,0,5,["f7c82eadbb5a"],[-2.58771890271044080e-01,4.79509611676803060e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["f7c82eadbb5a"],[-2.58771890271044080e-01,4.79509611676803060e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1277_2": [ +[[3,0,0,5,["cbff19786c02"],[-3.41127991415364318e-01,2.91320066345446105e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["cbff19786c02"],[-3.41127991415364318e-01,2.91320066345446105e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1278_2": [ +[[3,0,0,5,["c894860f462f"],[-8.42040505947518336e-02,4.32968416648908061e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c894860f462f"],[2.46613648273121377e-01,3.65696158630969548e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1279_2": [ +[[3,0,0,5,["128435dad36fc"],[3.27771433417738067e-01,5.63031548393962633e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["128435dad36fc"],[-1.66354022642415111e-01,6.29892829140250354e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1280_2": [ +[[3,0,0,5,["11a6a47832da4"],[-2.35765078687805163e-01,5.74545378986696997e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["11a6a47832da4"],[-2.35765078687805163e-01,5.74545378986696997e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1281_2": [ +[[3,0,0,5,["daae6aa6b28f"],[3.16444577376095826e-01,3.62095979362544174e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["daae6aa6b28f"],[3.16444577376095826e-01,3.62095979362544174e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1282_2": [ +[[3,0,0,5,["13b875df27d8"],[-3.41390927335418481e-02,-2.67418684413103583e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["13b875df27d8"],[-3.41390927335418481e-02,-2.67418684413103583e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1283_2": [ +[[3,0,0,5,["9509bcdb25cc"],[-3.27554699014507733e-01,1.09630674378820986e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9509bcdb25cc"],[-2.23864089554745155e-01,2.39368208210608835e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1284_2": [ +[[3,0,0,5,["63d2e27fa33e"],[-1.53042621967337311e-01,1.57368034471464080e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["63d2e27fa33e"],[-2.19493480120444090e-01,3.05852851309712515e-03]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1285_2": [ +[[3,0,0,5,["22e2f8e250b5"],[5.88096423744891711e-02,4.92629910112864777e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["22e2f8e250b5"],[5.88096423744891711e-02,4.92629910112864777e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1286_2": [ +[[3,0,0,5,["7539a8fb41c1"],[2.50319290453805021e-01,6.15735794025927818e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["7539a8fb41c1"],[2.50319290453805021e-01,6.15735794025927818e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1287_2": [ +[[3,0,0,5,["45c84cc2b191"],[1.53309508624083934e-01,-6.63845549530286960e-03]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["45c84cc2b191"],[1.53309508624083934e-01,-6.63845549530286960e-03]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1288_2": [ +[[3,0,0,5,["c5e34b43eeb0"],[4.28167666121372470e-01,7.76961673445917822e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["c5e34b43eeb0"],[4.28167666121372470e-01,7.76961673445917822e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1289_2": [ +[[3,0,0,5,["3936198e5c7e"],[-1.20604789614643049e-01,3.58106011637882859e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["3936198e5c7e"],[-1.20604789614643049e-01,3.58106011637882859e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1290_2": [ +[[3,0,0,5,["107d553f8fbc8"],[-5.37432310264650659e-01,2.18564011299350630e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["107d553f8fbc8"],[-5.37432310264650659e-01,2.18564011299350630e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1291_2": [ +[[3,0,0,5,["3ef8d303d5ce"],[-2.09876154691797240e-02,1.36877139678835635e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["3ef8d303d5ce"],[-2.09876154691797240e-02,1.36877139678835635e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1292_2": [ +[[3,0,0,5,["6face395482b"],[-2.43533538269417538e-01,-3.16120975161732765e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["6face395482b"],[-2.43533538269417538e-01,-3.16120975161732765e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1293_2": [ +[[3,0,0,5,["21351e64ea17"],[-4.89560737865838425e-02,5.41831641441631873e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["21351e64ea17"],[-4.89560737865838425e-02,5.41831641441631873e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1294_2": [ +[[3,0,0,5,["4a6f8b2d4bcd"],[-2.73586727968487264e-02,-1.61383296089018441e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["4a6f8b2d4bcd"],[-2.73586727968487264e-02,-1.61383296089018441e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1295_2": [ +[[3,0,0,5,["6ff1b82a3695"],[2.45654148313792148e-01,-1.58962798455996868e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["6ff1b82a3695"],[2.45654148313792148e-01,-1.58962798455996868e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1296_2": [ +[[3,0,0,5,["4f3c0c015ce7"],[-1.72236650341852926e-01,2.63370193377094608e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["4f3c0c015ce7"],[-1.72236650341852926e-01,2.63370193377094608e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1297_2": [ +[[3,0,0,5,["51751f277018"],[-1.27538793713226906e-01,1.25778856797599897e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["51751f277018"],[-1.27538793713226906e-01,1.25778856797599897e-01]],[["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1298_2": [ +[[3,0,0,5,["9d301e12708d"],[-1.45811197246529800e-02,3.45352299354313774e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["9d301e12708d"],[-1.45811197246529800e-02,3.45352299354313774e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1299_2": [ +[[3,0,0,5,["2419fa061040"],[7.46316105613369363e-02,-2.70660908601351446e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["2419fa061040"],[7.46316105613369363e-02,-2.70660908601351446e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1300_2": [ +[[3,0,0,5,["36189d193eee"],[-4.48752273627050224e-02,1.10169790982932059e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["36189d193eee"],[-4.48752273627050224e-02,1.10169790982932059e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1301_2": [ +[[3,0,0,5,["584c69f4cfe6"],[-1.18285380755672562e-01,1.53982879680566787e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["584c69f4cfe6"],[-1.18285380755672562e-01,1.53982879680566787e-01]],[["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1302_2": [ +[[3,0,0,5,["1dcf4511c089"],[3.85730402092036781e-02,5.30018819647488371e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["1dcf4511c089"],[6.47532484558321353e-02,1.02027318500136008e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1303_2": [ +[[3,0,0,5,["459a4ad6e360"],[1.52352569542809624e-01,-1.46777189804962876e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["459a4ad6e360"],[1.52352569542809624e-01,-1.46777189804962876e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1304_2": [ +[[3,0,0,5,["5a4e6c441629"],[-1.85604411725231760e-01,-7.06208096654025869e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["5a4e6c441629"],[-8.13056847417607254e-02,-1.81178591556341945e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1305_2": [ +[[3,0,0,5,["66a2e115b6fd"],[-2.18201983700856000e-01,5.76901718629861809e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["66a2e115b6fd"],[-2.18201983700856000e-01,5.76901718629861809e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1306_2": [ +[[3,0,0,5,["e78aab14f9d6"],[1.92612481561045989e-01,4.71327871372489215e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["e78aab14f9d6"],[4.69476725862692457e-01,1.97081542156723466e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"1307_2": [ +[[3,0,0,5,["f335dfcbb001"],[3.05835320072061934e-01,4.38751631710402989e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["f335dfcbb002"],[-9.39860252897753157e-02,5.26502482788401949e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"1308_2": [ +[[3,0,0,5,["b14a8003741c"],[2.34824151351883281e-01,3.11213668926716536e-01]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["b14a8003741c"],[2.34824151351883281e-01,3.11213668926716536e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1309_2": [ +[[3,0,0,5,["8d60aa2b893f"],[3.02734073731341702e-01,7.07552362704394061e-02]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["8d60aa2b893f"],[3.02734073731341702e-01,7.07552362704394061e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1310_2": [ +[[3,0,0,5,["132d20e6f830"],[-3.52890132226044151e-02,-2.30850155752607977e-02]],[["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["132d20e6f830"],[-3.52890132226044151e-02,-2.30850155752607977e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1311_2": [ +[[3,0,0,5,["b162232cb9c0"],[-3.89844438455217324e-01,-1.32666721994672832e-02]],[["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["b162232cb9c0"],[-3.89844438455217324e-01,-1.32666721994672832e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1312_2": [ +[[3,0,0,5,["b689abd2019a"],[-4.01343071981040356e-01,-7.04039740491310684e-03]],[["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["b689abd2019a"],[-4.01343071981040356e-01,-7.04039740491310684e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1313_2": [ +[[3,0,0,5,["955e1cb1ce7d"],[-3.10059017573759088e-01,1.08403276307800944e-01]],[["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["955e1cb1ce7d"],[-3.10059017573759088e-01,1.08403276307800944e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1314_2": [ +[[3,0,0,5,["8b7eaa677126"],[6.38016135994280975e-02,3.00043857912181133e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["8b7eaa677126"],[6.38016135994280975e-02,3.00043857912181133e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1315_2": [ +[[3,0,0,5,["2e5924891641"],[9.85525395757752554e-03,1.01443202896590187e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["2e5924891641"],[9.85525395757752554e-03,1.01443202896590187e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1316_2": [ +[[3,0,0,5,["2fe8ef13cca4"],[-7.95744916612503295e-02,-6.90476073094102721e-02]],[["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["2fe8ef13cca4"],[-7.95744916612503295e-02,-6.90476073094102721e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1317_2": [ +[[3,0,0,5,["ecd44bb7d330"],[-3.84080206585733275e-01,3.51721257296498391e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["ecd44bb7d330"],[-3.84080206585733275e-01,3.51721257296498391e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1318_2": [ +[[3,0,0,5,["f0ec8d178b87"],[-3.93008956028971013e-01,3.55287762296473741e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["f0ec8d178b87"],[-3.93008956028971013e-01,3.55287762296473741e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1319_2": [ +[[3,0,0,5,["7400946e970b"],[-2.34314569407723550e-01,1.00838717007543904e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["7400946e970b"],[-2.34314569407723550e-01,1.00838717007543904e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1320_2": [ +[[3,0,0,5,["6fe9e7158c6f"],[-2.45731486373316904e-01,1.34772198691037182e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["6fe9e7158c6f"],[-2.45731486373316904e-01,1.34772198691037182e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1321_2": [ +[[3,0,0,5,["771102201330"],[-2.22269026245349888e-01,1.38388437181459767e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["771102201330"],[-5.93125333369988184e-02,2.55023338074636396e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1322_2": [ +[[3,0,0,5,["47f641d46ede"],[-1.57356545377121682e-01,-1.67543743192180850e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["47f641d46ede"],[-9.94207486045945443e-02,-1.23115011995908269e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1323_2": [ +[[3,0,0,5,["4c76925b3ab2"],[-1.44713100444357534e-01,-8.56190459185987573e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["4c76925b3ab2"],[-1.62869422618498738e-01,4.17858066829716046e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1324_2": [ +[[3,0,0,5,["3e61a839fe4c"],[1.27276793159844637e-01,-5.11713467163404448e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["3e61a839fe4c"],[5.38146772654314320e-02,-1.26181889796576074e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1325_2": [ +[[3,0,0,5,["5ca39d21f6c5"],[-5.37996560956218450e-02,1.96483157072446735e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["5ca39d21f6c4"],[-1.76976674405586898e-01,1.00892471104150228e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1326_2": [ +[[3,0,0,5,["e937aa6b44f"],[-3.18589118907222635e-02,-3.52347730485120386e-03]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["e937aa6b44f"],[-2.00361779435371951e-02,-2.50191273347716570e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1327_2": [ +[[3,0,0,5,["de0ba7a89f5b"],[-6.30876182091539423e-03,4.88242520485989706e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["de0ba7a89f5b"],[-6.30876182091539423e-03,4.88242520485989706e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"1328_2": [ +[[3,0,0,5,["44ce10529b7a"],[-1.14132716884244395e-01,9.93303535437256579e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["44ce10529b7a"],[-1.04668514956679365e-02,1.50941184632519265e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1329_2": [ +[[3,0,0,5,["670205047fdc"],[-1.41403604198041516e-01,1.76960040205796088e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["670205047fdc"],[-2.25117091841216255e-01,2.51421970159087932e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1330_2": [ +[[3,0,0,5,["2ce2e897dfc3"],[-7.94663559896942873e-02,5.85491494825952086e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["2ce2e897dfc3"],[-1.47906985646491795e-02,9.75916998283449522e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1331_2": [ +[[3,0,0,5,["8b6f52db3874"],[-1.73877848736805479e-01,-2.52552216291796361e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8b6f52db3874"],[-3.01531590683544737e-01,-5.56311788036969873e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1332_2": [ +[[3,0,0,5,["bec45017e857"],[-3.93742067855336164e-01,1.44734409093724647e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["bec45017e857"],[-1.76075004077721364e-01,3.80760368360122614e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1333_2": [ +[[3,0,0,5,["5a7e248de375"],[3.21592605564403888e-02,-1.96379864555703554e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5a7e248de375"],[1.61601565133237868e-01,-1.16121502698429774e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"1334_2": [ +[[3,0,0,5,["714abbb52c97"],[-1.11225341351800872e-01,2.22924804190439974e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["714abbb52c97"],[-2.36279833847390319e-01,7.89834476280964759e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1335_2": [ +[[3,0,0,5,["3d855a2eac3f"],[-7.37123373349576061e-02,1.13440590889537743e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["3d855a2eac3f"],[-1.32337104666459843e-01,2.80921174931420825e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1336_2": [ +[[3,0,0,5,["421f5b059b19"],[6.01610210925715011e-02,1.32375336842996738e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["421f5b059b19"],[6.01610210925715011e-02,1.32375336842996738e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1337_2": [ +[[3,0,0,5,["4a77518340e0"],[-3.73103565365621170e-02,-1.59445509111293876e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["4a77518340e0"],[-1.39127406837828288e-01,-8.63625946068464628e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1338_2": [ +[[3,0,0,5,["1fc1457a78df"],[6.01975579665492283e-02,3.53902570005390285e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["1fc1457a78df"],[1.75414107360014337e-02,6.75907921620330088e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1339_2": [ +[[3,0,0,5,["db6b4add1d96"],[-3.10375351922845821e-01,3.69433144799631963e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["db6b4add1d96"],[4.17601658250860985e-02,4.80697197940696874e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"1340_2": [ +[[3,0,0,5,["90ab7756b4fb"],[1.49585216931849771e-02,3.17780363834339274e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["90ab7756b4fb"],[-2.14127378069412455e-01,2.35281922320966730e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"1341_2": [ +[[3,0,0,5,["95e0aff9c29a"],[-3.27357060882680573e-01,3.82532004147980303e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["95e0aff9c29a"],[3.82532004147980303e-02,3.27357060882680573e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1342_2": [ +[[3,0,0,5,["8395fa7ac085"],[-2.39239985286859719e-02,2.88369650402811928e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["8395fa7ac085"],[-2.39239985286859719e-02,2.88369650402811928e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1343_2": [ +[[3,0,0,5,["885a435c2584"],[-2.43624071019489186e-01,1.74793727223357814e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["885a435c2584"],[1.74793727223357842e-01,2.43624071019489186e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1344_2": [ +[[3,0,0,5,["67206af36b44"],[-2.18402253972109633e-01,6.10627063734894282e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["67206af36b44"],[-2.18402253972109661e-01,6.10627063734894143e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1345_2": [ +[[3,0,0,5,["884f5a4fd7a3"],[5.82611077672753747e-02,2.94032285974324459e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["884f5a4fd7a3"],[-2.94032285974324459e-01,5.82611077672753053e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1346_2": [ +[[3,0,0,5,["6137546446e7"],[-1.03445540175464257e-01,1.87085907794582618e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["6137546446e8"],[-1.87085907794582673e-01,-1.03445540175464368e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1347_2": [ +[[3,0,0,5,["5557a9070a0c"],[-1.01691361571595446e-02,-1.87394256329868419e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5557a9070a0c"],[-1.01691361571595446e-02,-1.87394256329868419e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1348_2": [ +[[3,0,0,5,["a16192ca99e3"],[3.54820523935256538e-01,6.54555000923709440e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a16192ca99e3"],[3.54820523935256538e-01,6.54555000923709440e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1349_2": [ +[[3,0,0,5,["58a165e5605c"],[-1.34301795006293884e-01,-1.41241677019267181e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["58a165e5605c"],[-1.34301795006293884e-01,-1.41241677019267181e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1350_2": [ +[[3,0,0,5,["9284837b688a"],[-1.46670022798757516e-01,-2.86876209618615041e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["9284837b688a"],[-1.46670022798757516e-01,-2.86876209618615041e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1351_2": [ +[[3,0,0,5,["c273de415d57"],[-4.61040428212229139e-02,-4.25113099587331456e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c273de415d57"],[-4.61040428212229139e-02,-4.25113099587331456e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1352_2": [ +[[3,0,0,5,["1c32ed923c5b"],[6.13815712278313053e-02,8.80668088213349201e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["1c32ed923c5b"],[6.13815712278313053e-02,8.80668088213349201e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1353_2": [ +[[3,0,0,5,["77fdf705d13e"],[-2.47553591633918157e-01,9.13352115201970516e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["77fdf705d13e"],[-2.47553591633918157e-01,9.13352115201970516e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1354_2": [ +[[3,0,0,5,["b9f797509b12"],[-2.91389456221619159e-01,2.86930465643992161e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["b9f797509b12"],[-2.91389456221619159e-01,2.86930465643992161e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1355_2": [ +[[3,0,0,5,["457345e66bf9"],[-1.28828391934265568e-01,8.20213191898869209e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["457345e66bf9"],[-1.28828391934265568e-01,8.20213191898869209e-02]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1356_2": [ +[[3,0,0,5,["985c403b9990"],[-2.62287057486625064e-01,2.08470519185606717e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["985c403b9990"],[-2.62287057486625064e-01,2.08470519185606717e-01]],[["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1357_2": [ +[[3,0,0,5,["918f773bc172"],[-2.13812186643275282e-01,2.38206688660675098e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["918f773bc172"],[-2.13812186643275282e-01,2.38206688660675098e-01]],[["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1358_2": [ +[[3,0,0,5,["c5f87ed0a033"],[-4.23257003318846858e-01,-1.01864067684154916e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["c5f87ed0a033"],[-3.71316670250165015e-01,2.27259124212742164e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1359_2": [ +[[3,0,0,5,["8703c2fb44e9"],[-1.93663613238323429e-01,2.25042847442462390e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["8703c2fb44e9"],[-2.96070177674002233e-01,2.21884692941874961e-02]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1360_2": [ +[[3,0,0,5,["c275ce641baa"],[-4.25048411876019383e-01,-4.68488550995492664e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["c275ce641baa"],[-4.25048411876019383e-01,-4.68488550995492664e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1361_2": [ +[[3,0,0,5,["d65846843626"],[-4.42900532670625124e-01,-1.61273805381133895e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["d65846843626"],[-4.42900532670625124e-01,-1.61273805381133895e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1362_2": [ +[[3,0,0,5,["95cca31d7fde"],[-1.43787415395401963e-01,2.96374143043947158e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["95cca31d7fde"],[-1.43787415395401963e-01,2.96374143043947158e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1363_2": [ +[[3,0,0,5,["8f3f103c4a6c"],[-2.77119102724364907e-01,1.49770777233830615e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8f3f103c4a6c"],[-2.77119102724364907e-01,1.49770777233830615e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1364_2": [ +[[3,0,0,5,["4b2d98db995a"],[-1.31816557157419578e-01,9.97726182027656450e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["4b2d98db995a"],[-1.31816557157419578e-01,9.97726182027656450e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1365_2": [ +[[3,0,0,5,["2eb1a55090fc"],[-7.52371177362259058e-02,6.98768281226518212e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["2eb1a55090fc"],[-7.52371177362259058e-02,6.98768281226518212e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1366_2": [ +[[3,0,0,5,["5df92fbcf099"],[-1.44251548683467845e-01,1.47971524216898159e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["5df92fbcf099"],[-1.44251548683467845e-01,1.47971524216898159e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1367_2": [ +[[3,0,0,5,["530dc233c596"],[1.59860625768402875e-01,8.83226831702805665e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["530dc233c596"],[1.59860625768402875e-01,8.83226831702805665e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1368_2": [ +[[3,0,0,5,["45b0cac72f5a"],[-1.43204544332548700e-01,5.45747211924060768e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["45b0cac72f5a"],[-1.43204544332548700e-01,5.45747211924060768e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1369_2": [ +[[3,0,0,5,["7446ed327f00"],[-2.34442820262866114e-01,-1.02063626917634126e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["7446ed327f00"],[-2.34442820262866114e-01,-1.02063626917634126e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1370_2": [ +[[3,0,0,5,["c3c9133ea4c"],[2.66408629361197385e-02,3.78607209868005168e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["c3c9133ea4c"],[2.66408629361197385e-02,3.78607209868005168e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1371_2": [ +[[3,0,0,5,["6096d47e9fef"],[-2.01658397527316458e-01,-6.66966101415055190e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["6096d47e9fef"],[-2.01658397527316458e-01,-6.66966101415055190e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1372_2": [ +[[3,0,0,5,["9d23d906b949"],[-3.07797223371501061e-01,1.57063164849212261e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["9d23d906b949"],[-3.07797223371501061e-01,1.57063164849212261e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1373_2": [ +[[3,0,0,5,["8b1329ed4a85"],[-2.75038812135883048e-01,1.33734573528871081e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["8b1329ed4a85"],[-9.99171853294200940e-02,2.89046432972131451e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1374_2": [ +[[3,0,0,5,["9531b94535fb"],[-1.68790014814199807e-01,2.81331583048806511e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["9531b94535fa"],[-3.18284034207455879e-01,7.95789060640589019e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1375_2": [ +[[3,0,0,5,["5eea9de97a52"],[-1.77917665524168239e-01,1.09136684963689140e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["5eea9de97a52"],[-4.86354977709748115e-02,2.02978077799063905e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1376_2": [ +[[3,0,0,5,["bba1c4b73b48"],[-1.04628195985793426e-01,3.99120806794527216e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["bba1c4b73b48"],[-3.56204335881925627e-01,2.08237722112186358e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1377_2": [ +[[3,0,0,5,["11250d4854ecb"],[-6.02665465259160760e-01,-2.60151095325273363e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["11250d4854ecb"],[-6.02665465259160760e-01,-2.60151095325273363e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1378_2": [ +[[3,0,0,5,["8ba35193a38a"],[-3.05006134125670847e-01,-3.55173187619448882e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8ba35193a38a"],[-3.05006134125670847e-01,-3.55173187619448882e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1379_2": [ +[[3,0,0,5,["c112f4de625e"],[1.65546599269208589e-01,3.90970177518279338e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c112f4de625e"],[1.65546599269208589e-01,3.90970177518279338e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1380_2": [ +[[3,0,0,5,["bcc430177f5c"],[-4.07994465496692715e-01,-7.64844112866885639e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["bcc430177f5c"],[-4.07994465496692715e-01,-7.64844112866885639e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1381_2": [ +[[3,0,0,5,["1dd5d3b88072"],[3.56352835967254089e-02,5.50871424185858938e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["1dd5d3b88072"],[3.56352835967254158e-02,5.50871424185858521e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1382_2": [ +[[3,0,0,5,["2268cc47df1d"],[7.47354575999356480e-02,1.18366391272868993e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["2268cc47df1d"],[7.47354575999356480e-02,1.18366391272869270e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1383_2": [ +[[3,0,0,5,["83cc9fde198d"],[2.30771198843896436e-01,-1.75345208256733887e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["83cc9fde198d"],[2.30771198843896436e-01,-1.75345208256733887e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1384_2": [ +[[3,0,0,5,["ae5e2aa3232a"],[3.33023818189391196e-01,1.90054072081316222e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["ae5e2aa3232a"],[3.33023818189391196e-01,1.90054072081316222e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1385_2": [ +[[3,0,0,5,["69677f4d2c8b"],[-2.04997343918277203e-01,-1.08171436767237714e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["69677f4d2c8b"],[-2.04997343918277203e-01,-1.08171436767237714e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1386_2": [ +[[3,0,0,5,["94124559a30a"],[-1.91274171170263685e-02,-3.25050102145719333e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["94124559a30a"],[-1.91274171170263685e-02,-3.25050102145719333e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1387_2": [ +[[3,0,0,5,["c469e4a2481f"],[4.04108183904423934e-01,1.52479125731963289e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["c469e4a2481f"],[4.04108183904423934e-01,1.52479125731963289e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1388_2": [ +[[3,0,0,5,["94f0d4bc4638"],[-3.22059915549266051e-01,-5.95775882657998135e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["94f0d4bc4638"],[-3.22059915549266051e-01,-5.95775882657998135e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1389_2": [ +[[3,0,0,5,["5d61096a7840"],[-1.05478102818741218e-01,1.76181710858643314e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["5d61096a7840"],[-1.05478102818741218e-01,1.76181710858643314e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1390_2": [ +[[3,0,0,5,["a57fa0e9531d"],[-3.95979789460667309e-02,-3.61774514582731688e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["a57fa0e9531d"],[-3.95979789460667309e-02,-3.61774514582731688e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1391_2": [ +[[3,0,0,5,["b08aa8748fba"],[-2.72331407323180008e-01,-2.76676196953444697e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["b08aa8748fba"],[-2.72331407323180064e-01,-2.76676196953444697e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1392_2": [ +[[3,0,0,5,["2682b4dbbab9"],[-2.79487419565684903e-02,7.99407661327607710e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["2682b4dbbab9"],[-2.79487419565685319e-02,7.99407661327607849e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1393_2": [ +[[3,0,0,5,["4bc9a4972496"],[-1.02558981115103587e-01,-1.31365237391782269e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["4bc9a4972496"],[-1.02558981115103587e-01,-1.31365237391782269e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1394_2": [ +[[3,0,0,5,["6580b13306c2"],[-2.22431096829114994e-01,-1.85926201673482644e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["6580b13306c2"],[-2.22431096829114994e-01,-1.85926201673482644e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1395_2": [ +[[3,0,0,5,["727b561897b4"],[-3.82317132673911653e-02,2.48828139400194936e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["727b561897b4"],[-3.82317132673911653e-02,2.48828139400194936e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1396_2": [ +[[3,0,0,5,["ccf6b4997d26"],[-4.48263833199416650e-01,-4.69892466838072315e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["ccf6b4997d26"],[-4.48263833199416650e-01,-4.69892466838072315e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1397_2": [ +[[3,0,0,5,["79082c913eba"],[-2.28397610873888046e-01,-1.36643455013423565e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["79082c913eba"],[-2.28397610873888046e-01,-1.36643455013423565e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1398_2": [ +[[3,0,0,5,["b04d71a9e494"],[6.69460927422139418e-02,3.81869533001869932e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["b04d71a9e494"],[6.69460927422139418e-02,3.81869533001869932e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1399_2": [ +[[3,0,0,5,["46daa702a927"],[-1.14945124374448857e-01,-1.05187089824239216e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["46daa702a927"],[-1.14945124374448857e-01,-1.05187089824239216e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1400_2": [ +[[3,0,0,5,["597af55843f3"],[-1.93104344931440464e-01,-3.78002543075984104e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["597af55843f3"],[-1.93104344931440464e-01,-3.78002543075984104e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1401_2": [ +[[3,0,0,5,["b4be74f00f90"],[1.73153322347831928e-01,3.57760444205843464e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b4be74f00f90"],[1.73153322347831928e-01,3.57760444205843464e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1402_2": [ +[[3,0,0,5,["31d259747637"],[3.22706799572813341e-02,1.04698537234217598e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["31d259747637"],[3.22706799572813341e-02,1.04698537234217598e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1403_2": [ +[[3,0,0,5,["63a290c6ba72"],[1.74617186877441349e-01,1.32338692577755657e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["63a290c6ba72"],[1.74617186877441349e-01,1.32338692577755657e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1404_2": [ +[[3,0,0,5,["947f7cdc7308"],[1.90632820624826643e-01,2.65130894973013453e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["947f7cdc7308"],[1.90632820624826643e-01,2.65130894973013453e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1405_2": [ +[[3,0,0,5,["46840fd5c805"],[-1.15204666158543592e-01,1.03794791482331367e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["46840fd5c805"],[-8.06799975603830766e-03,1.54856001574038699e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1406_2": [ +[[3,0,0,5,["29ea27a1983a"],[7.14189123956809196e-02,-5.82657073499718015e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["29ea27a1983a"],[7.14189123956809196e-02,-5.82657073499718015e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1407_2": [ +[[3,0,0,5,["267481f5a4c8"],[-7.45352789139633182e-02,3.99438060069494394e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["267481f5a4c8"],[-7.45352789139633182e-02,3.99438060069494394e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1408_2": [ +[[3,0,0,5,["d4da6c2d921e"],[-4.17900922142820375e-01,2.10825907365782161e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d4da6c2d921e"],[-4.17900922142820375e-01,2.10825907365782161e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1409_2": [ +[[3,0,0,5,["b7d0071abf67"],[-2.03164126111529564e-01,3.49440420174352062e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["b7d0071abf67"],[-3.90750421993262265e-01,1.03432959458659351e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1410_2": [ +[[3,0,0,5,["4941c89e259f"],[-1.61056851985695193e-01,3.44888072710644589e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["4941c89e259f"],[-1.61056851985695193e-01,3.44888072710644589e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1411_2": [ +[[3,0,0,5,["99df253b29f"],[-1.20642415497942967e-03,-2.11135207929536023e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["99df253b29f"],[-1.20642415497942967e-03,-2.11135207929536023e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1412_2": [ +[[3,0,0,5,["fb613974f823"],[-3.34404953044308617e-01,4.40170534023873239e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["fb613974f823"],[-3.34404953044308617e-01,4.40170534023873239e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1413_2": [ +[[3,0,0,5,["de46c3da80ab"],[1.75319524852294933e-01,4.56267175154964399e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["de46c3da80ab"],[1.75319524852294933e-01,4.56267175154964399e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1414_2": [ +[[3,0,0,5,["720153cca4e6"],[-7.32992145515468652e-02,2.39745159856140561e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["720153cca4e6"],[-7.32992145515468652e-02,2.39745159856140561e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1415_2": [ +[[3,0,0,5,["100f35a7031da"],[2.30278058986558259e-01,5.15987019008830816e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["100f35a7031da"],[2.30278058986558259e-01,5.15987019008830816e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1416_2": [ +[[3,0,0,5,["455bf2224b59"],[-1.27768523915845783e-01,8.32964037040356542e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["455bf2224b59"],[-1.27768523915845783e-01,8.32964037040356542e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1417_2": [ +[[3,0,0,5,["f22df09fe27a"],[3.29096237560402349e-01,4.18705093014942742e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["f22df09fe27a"],[3.29096237560402405e-01,4.18705093014942742e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1418_2": [ +[[3,0,0,5,["a57ea295f49f"],[1.62078078268785897e-01,3.25842422790756758e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["a57ea295f49f"],[1.62078078268785897e-01,3.25842422790756758e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1419_2": [ +[[3,0,0,5,["b4bdfbff6c61"],[1.41781479028464608e-01,3.71307682191864497e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b4bdfbff6c61"],[1.41781479028464608e-01,3.71307682191864330e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1420_2": [ +[[3,0,0,5,["1b259233777d"],[-5.67453149698328579e-02,1.85371186067143472e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["1b259233777d"],[-5.67453149698328579e-02,1.85371186067143472e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1421_2": [ +[[3,0,0,5,["8543fa18f84a"],[-2.44704783023134254e-01,1.61245844064505039e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8543fa18f84a"],[-2.44704783023134254e-01,1.61245844064505039e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1422_2": [ +[[3,0,0,5,["5c746a30185b"],[1.71855056652770566e-01,1.08631719564046020e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5c746a30185b"],[1.71855056652770566e-01,1.08631719564046020e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1423_2": [ +[[3,0,0,5,["50d21a9d35d4"],[-1.74068257258019249e-01,3.58747861975785010e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["50d21a9d35d4"],[-1.74068257258019249e-01,3.58747861975785010e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1424_2": [ +[[3,0,0,5,["92bf4bcff3b4"],[9.61548979010194427e-02,3.08042080892020786e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["92bf4bcff3b4"],[9.61548979010194427e-02,3.08042080892020786e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1425_2": [ +[[3,0,0,5,["a2302049cfc4"],[-3.52184419054557996e-01,-5.62942590803888199e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a2302049cfc4"],[-3.52184419054557996e-01,-5.62942590803888199e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1426_2": [ +[[3,0,0,5,["bffcee7dfd1f"],[-3.68276848525175449e-01,2.06429824532030487e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["bffcee7dfd1f"],[-3.68276848525175449e-01,2.06429824532030487e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1427_2": [ +[[3,0,0,5,["c552929539ad"],[-3.03145381643453948e-01,3.10462125793918076e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c552929539ad"],[-3.03145381643453948e-01,3.10462125793918076e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1428_2": [ +[[3,0,0,5,["145e866cf3edb"],[8.53815924673943516e-02,7.11574725586183510e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["145e866cf3edb"],[8.53815924673943516e-02,7.11574725586183510e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1429_2": [ +[[3,0,0,5,["16a76cdba4c9"],[2.69873626313293508e-02,4.18734307153496854e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["16a76cdba4c9"],[2.69873626313293508e-02,4.18734307153496854e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1430_2": [ +[[3,0,0,5,["a2b9748a50f3"],[-3.43922292547813702e-01,-9.88089674375741550e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["a2b9748a50f3"],[-3.43922292547813702e-01,-9.88089674375741550e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1431_2": [ +[[3,0,0,5,["1bd02aaa6e1e"],[-3.10932489923248165e-02,-5.26685055562632759e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["1bd02aaa6e1e"],[-3.10932489923248165e-02,-5.26685055562632759e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1432_2": [ +[[3,0,0,5,["bf293c9f86c3"],[-4.15835479810004294e-01,6.15615633565777254e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["bf293c9f86c3"],[-4.15835479810004294e-01,6.15615633565777254e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1433_2": [ +[[3,0,0,5,["f7377ff55844"],[-2.32450210189615591e-02,5.43138295984177510e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["f7377ff55844"],[-2.32450210189615591e-02,5.43138295984177510e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1434_2": [ +[[3,0,0,5,["752e9fccbc1c"],[-1.16542535456914106e-01,2.29826076295916698e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["752e9fccbc1c"],[-1.16542535456914106e-01,2.29826076295916698e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1435_2": [ +[[3,0,0,5,["e7547b765a8"],[1.36874001273901147e-02,2.86966529758213018e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["e7547b765a8"],[1.36874001273901147e-02,2.86966529758213018e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1436_2": [ +[[3,0,0,5,["baefe4af8e18"],[6.49394435214679655e-02,4.05917242088747354e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["baefe4af8e18"],[6.49394435214679655e-02,4.05917242088747354e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1437_2": [ +[[3,0,0,5,["361311be5bf0"],[-1.12390214822469942e-01,-3.88365779463724359e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["361311be5bf0"],[-1.12390214822469942e-01,-3.88365779463724359e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1438_2": [ +[[3,0,0,5,["712257774de3"],[-4.90990912018464259e-02,2.43891505907203487e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["712257774de3"],[-4.90990912018464259e-02,2.43891505907203487e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1439_2": [ +[[3,0,0,5,["dfbec3f20b4e"],[-4.91548158181149608e-01,2.15620835960416979e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["dfbec3f20b4e"],[-4.91548158181149608e-01,2.15620835960416979e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1440_2": [ +[[3,0,0,5,["79a177d1f7f9"],[-2.63508202860178398e-01,-4.58584063053422142e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["79a177d1f7f9"],[-2.63508202860178398e-01,-4.58584063053422142e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1441_2": [ +[[3,0,0,5,["97ec35fb6a2f"],[-3.32522633807420309e-01,3.22362897889040823e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["97ec35fb6a2f"],[-3.32522633807420309e-01,3.22362897889040823e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1442_2": [ +[[3,0,0,5,["93096c5a2d91"],[-1.90231243427521901e-01,2.61455779765763896e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["93096c5a2d91"],[-1.90231243427521901e-01,2.61455779765763896e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1443_2": [ +[[3,0,0,5,["a35c8c4db909"],[2.06890992321825257e-01,2.93677471897984266e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["a35c8c4db909"],[2.06890992321825257e-01,2.93677471897984266e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1444_2": [ +[[3,0,0,5,["c8d0f05ffb5a"],[-4.34790081524676297e-01,7.72504727102355238e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c8d0f05ffb5a"],[-4.34790081524676297e-01,7.72504727102355238e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1445_2": [ +[[3,0,0,5,["b975ec2c2aee"],[-4.04296209869036860e-01,5.35884149941135146e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["b975ec2c2aee"],[-4.04296209869036860e-01,5.35884149941135146e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1446_2": [ +[[3,0,0,5,["1165149d2dc69"],[-1.26750433112678695e-02,6.11895463019823449e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["1165149d2dc69"],[-1.26750433112678695e-02,6.11895463019823449e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1447_2": [ +[[3,0,0,5,["7f02a15deb7c"],[-1.47954078827544910e-01,-2.36890838607746956e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["7f02a15deb7c"],[-1.47954078827544910e-01,-2.36890838607746956e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1448_2": [ +[[3,0,0,5,["8fbf058f94c4"],[-1.63373674698212068e-01,2.70608581735853004e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8fbf058f94c4"],[-1.63373674698212068e-01,2.70608581735853004e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1449_2": [ +[[3,0,0,5,["10fdecc743318"],[2.58970787117902002e-01,5.38848505010438350e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["10fdecc743318"],[2.58970787117902002e-01,5.38848505010438350e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1450_2": [ +[[3,0,0,5,["aa1d2f249620"],[-2.79151410197376437e-01,2.49025722794041088e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["aa1d2f249620"],[-2.79151410197376437e-01,2.49025722794041088e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1451_2": [ +[[3,0,0,5,["9748cf921eb5"],[-1.30589251962662412e-01,3.05975598511981639e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["9748cf921eb5"],[-1.30589251962662412e-01,3.05975598511981639e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1452_2": [ +[[3,0,0,5,["4ad329bb8fad"],[-1.14485029482226289e-01,-1.18182550775433576e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["4ad329bb8fad"],[-1.14485029482226289e-01,-1.18182550775433576e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1453_2": [ +[[3,0,0,5,["4a08ed3631db"],[1.39297229421431801e-01,8.42707214844240771e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["4a08ed3631db"],[1.39297229421431801e-01,8.42707214844240771e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1454_2": [ +[[3,0,0,5,["7c9136e7640c"],[-2.20370455948585731e-01,1.62703600478168064e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["7c9136e7640c"],[-2.20370455948585731e-01,1.62703600478168064e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1455_2": [ +[[3,0,0,5,["5dd74689dc4c"],[-6.40654988983491991e-02,1.96161634621053960e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["5dd74689dc4c"],[-6.40654988983491991e-02,1.96161634621053960e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1456_2": [ +[[3,0,0,5,["b2c65f7e228d"],[7.67799759919458036e-02,3.85559529396605760e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["b2c65f7e228d"],[7.67799759919458036e-02,3.85559529396605760e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1457_2": [ +[[3,0,0,5,["b6f6ea97363d"],[4.17045052654220205e-02,4.00175970467216036e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["b6f6ea97363d"],[4.17045052654220205e-02,4.00175970467216036e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1458_2": [ +[[3,0,0,5,["4234602906b7"],[-4.86182769544840632e-02,1.37227486034872698e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["4234602906b7"],[-4.86182769544840632e-02,1.37227486034872698e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1459_2": [ +[[3,0,0,5,["23421f2f4422"],[-4.36068376440690575e-02,-6.41087609801649916e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["23421f2f4422"],[-4.36068376440690575e-02,-6.41087609801649916e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1460_2": [ +[[3,0,0,5,["b24a6a229f0a"],[-3.91621337366535760e-01,-1.86539931365953676e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["b24a6a229f0a"],[-3.91621337366535760e-01,-1.86539931365953676e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1461_2": [ +[[3,0,0,5,["5955d9ff606f"],[1.87233125000039580e-01,5.94690443414905567e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["5955d9ff606f"],[1.87233125000039580e-01,5.94690443414905567e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1462_2": [ +[[3,0,0,5,["51ff42251e48"],[-1.22922034134792427e-01,1.31920979989895742e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["51ff42251e48"],[-1.22922034134792427e-01,1.31920979989895742e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1463_2": [ +[[3,0,0,5,["702faf978921"],[-7.94300548297212361e-02,2.33563410303901070e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["702faf978921"],[-7.94300548297212361e-02,2.33563410303901070e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1464_2": [ +[[3,0,0,5,["c0b20338db1c"],[-2.55236545331651854e-01,-3.38247296888279869e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["c0b20338db1c"],[-4.19656449358360661e-01,-5.86974653370834765e-02]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1465_2": [ +[[3,0,0,5,["bd5eaf3f95f5"],[-4.08065655581007602e-01,8.30379882782315698e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["bd5eaf3f95f5"],[-3.47262716838291186e-01,-2.29829267623037986e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1466_2": [ +[[3,0,0,5,["8c9f41cb0f82"],[-1.84965448766668455e-01,2.47813956020073889e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8c9f41cb0f82"],[-1.84965448766668455e-01,2.47813956020073889e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1467_2": [ +[[3,0,0,5,["9b4af302049e"],[-1.97946789310136789e-01,2.78269900022809047e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["9b4af302049e"],[-1.97946789310136789e-01,2.78269900022809047e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1468_2": [ +[[3,0,0,5,["e9ece94f18a4"],[-1.96528182206931024e-01,4.75385864845896677e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["e9ece94f18a4"],[-1.96528182206931024e-01,4.75385864845896677e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1469_2": [ +[[3,0,0,5,["eadd56d3504d"],[-3.24757054115753091e-02,5.15450686426869864e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["eadd56d3504d"],[-3.24757054115753091e-02,5.15450686426869864e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1470_2": [ +[[3,0,0,5,["66c2930cff17"],[-1.73210488645969773e-01,-1.45125325288198298e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["66c2930cff17"],[-1.73210488645969773e-01,-1.45125325288198298e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1471_2": [ +[[3,0,0,5,["9a104ab9ad70"],[7.34939698689074938e-02,3.30721908034811274e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["9a104ab9ad70"],[7.34939698689074938e-02,3.30721908034811274e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1472_2": [ +[[3,0,0,5,["1d11fb290eea"],[5.76732264143425752e-02,-2.75744294506331117e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["1d11fb290eea"],[5.76732264143425752e-02,-2.75744294506331117e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1473_2": [ +[[3,0,0,5,["83e12ef3fc5e"],[3.23333679350922554e-02,2.88198266059948582e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["83e12ef3fc5e"],[3.23333679350922554e-02,2.88198266059948582e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1474_2": [ +[[3,0,0,5,["abd0feadc87d"],[-3.32613646163492205e-01,1.79227042566594164e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["abd0feadc87d"],[-3.32613646163492205e-01,1.79227042566594164e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1475_2": [ +[[3,0,0,5,["106e294f571fe"],[3.48163556208779479e-01,4.61487451249582903e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["106e294f571fe"],[3.48163556208779479e-01,4.61487451249582903e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1476_2": [ +[[3,0,0,5,["8292965ce23c"],[-2.86884109888274175e-01,1.19334489047453057e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8292965ce23c"],[-2.86884109888274175e-01,1.19334489047453057e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1477_2": [ +[[3,0,0,5,["713d91afb3c7"],[6.75857923779182579e-02,2.39671389951432445e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["713d91afb3c7"],[6.75857923779182579e-02,2.39671389951432445e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1478_2": [ +[[3,0,0,5,["24eee95ca2e6"],[-2.94420740164533304e-02,7.56926486189473391e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["24eee95ca2e6"],[-2.94420740164533304e-02,7.56926486189473391e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1479_2": [ +[[3,0,0,5,["68e8e0c9dad4"],[-1.87250663152010000e-01,1.34755843997131253e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["68e8e0c9dad4"],[-1.87250663152010000e-01,1.34755843997131253e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1480_2": [ +[[3,0,0,5,["2f77d33a5c82"],[-9.08143485464748268e-02,5.14649853377169841e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["2f77d33a5c82"],[-9.08143485464748268e-02,5.14649853377169841e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1481_2": [ +[[3,0,0,5,["83fb9347f00f"],[-8.91872058690143799e-02,-2.76189921216574652e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["83fb9347f00f"],[-8.91872058690143799e-02,-2.76189921216574652e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1482_2": [ +[[3,0,0,5,["366b030d6f4c"],[2.69286325955811756e-02,-1.16597236139597840e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["366b030d6f4c"],[2.69286325955811756e-02,-1.16597236139597840e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1483_2": [ +[[3,0,0,5,["6ce2863f3226"],[-1.57072400305769327e-01,1.80720607981775111e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6ce2863f3226"],[-1.57072400305769327e-01,1.80720607981775111e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1484_2": [ +[[3,0,0,5,["4adbcc6c7234"],[-1.41931297508588489e-01,8.33898103145188918e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["4adbcc6c7234"],[-1.41931297508588489e-01,8.33898103145188918e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1485_2": [ +[[3,0,0,5,["e6e04b3bdd1d"],[-5.07691157971432938e-01,3.32080741132198196e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["e6e04b3bdd1d"],[-5.07691157971432938e-01,3.32080741132198196e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1486_2": [ +[[3,0,0,5,["d0410bdf6e84"],[-3.88505851537007230e-01,2.42459311543295059e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d0410bdf6e84"],[-3.88505851537007230e-01,2.42459311543295059e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1487_2": [ +[[3,0,0,5,["8e29d399b94e"],[-3.10690783126379877e-01,3.46824222069270147e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8e29d399b94e"],[-3.10690783126379877e-01,3.46824222069270147e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1488_2": [ +[[3,0,0,5,["ab8402478838"],[-2.24737346588880393e-01,3.02899346355991028e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["ab8402478838"],[-2.24737346588880393e-01,3.02899346355991028e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1489_2": [ +[[3,0,0,5,["a3885ecc113c"],[-3.25511826060979337e-01,1.52849557965500149e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a3885ecc113c"],[-3.25511826060979337e-01,1.52849557965500149e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1490_2": [ +[[3,0,0,5,["d4ed31bf452a"],[-3.99049685744399529e-01,2.44947073507962770e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["d4ed31bf452a"],[-3.99049685744399529e-01,2.44947073507962770e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1491_2": [ +[[3,0,0,5,["8e3e6f816324"],[-2.64188582929903659e-01,1.67471620165329210e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8e3e6f816324"],[-2.64188582929903659e-01,1.67471620165329210e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1492_2": [ +[[3,0,0,5,["e1c9bc7915d6"],[-4.91647766493028660e-01,6.93380515807126285e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["e1c9bc7915d6"],[-4.91647766493028660e-01,6.93380515807126285e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1493_2": [ +[[3,0,0,5,["f60acd1e2494"],[2.74176017664173322e-02,5.40357368712982455e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["f60acd1e2494"],[2.74176017664173322e-02,5.40357368712982455e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1494_2": [ +[[3,0,0,5,["a1e0313dec5c"],[-3.06561107446501113e-01,1.80925095371942235e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["a1e0313dec5c"],[-3.06561107446501113e-01,1.80925095371942235e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1495_2": [ +[[3,0,0,5,["1009bf4fcaa77"],[-4.04945604624605132e-02,5.62834752553731721e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["1009bf4fcaa77"],[-4.04945604624605132e-02,5.62834752553731721e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1496_2": [ +[[3,0,0,5,["afb436c58caa"],[-2.70968911703535320e-01,2.75432585280180053e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["afb436c58caa"],[-2.70968911703535320e-01,2.75432585280180053e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1497_2": [ +[[3,0,0,5,["12c1bd7896f90"],[-6.54117953039895728e-01,8.75134698535945665e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["12c1bd7896f90"],[-6.54117953039895728e-01,8.75134698535945665e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1498_2": [ +[[3,0,0,5,["6e29f5138d0a"],[-1.44630834811639714e-01,1.94340995488298501e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["6e29f5138d0a"],[-1.44630834811639714e-01,1.94340995488298501e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1499_2": [ +[[3,0,0,5,["a7150fd88cc4"],[-2.60728889499284577e-02,3.66491537638619969e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a7150fd88cc4"],[-2.60728889499284577e-02,3.66491537638619969e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1500_2": [ +[[3,0,0,5,["cf692c7ac9b7"],[-2.00949194778058948e-01,4.09448129721220799e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["cf692c7ac9b7"],[1.47431010768482473e-01,4.31616087371566259e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1501_2": [ +[[3,0,0,5,["5b4e477009a6"],[1.99594872190146821e-01,2.18154118246127460e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["5b4e477009a6"],[1.25709061980154191e-01,1.56560713251275907e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"1502_2": [ +[[3,0,0,5,["e5d45a12d730"],[-4.96822615200580631e-01,9.27192942172329754e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["e5d45a12d730"],[-4.96822615200580631e-01,9.27192942172329754e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1503_2": [ +[[3,0,0,5,["af79b55ffa57"],[2.16217000119429237e-01,3.19608147166148771e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["af79b55ffa57"],[2.16217000119429237e-01,3.19608147166148771e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1504_2": [ +[[3,0,0,5,["cf2a25fe1220"],[-4.23330375652155921e-01,-1.68303845858298828e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["cf2a25fe1220"],[-4.23330375652155921e-01,-1.68303845858298828e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1505_2": [ +[[3,0,0,5,["13c4c842f343b"],[-5.76311841264158575e-01,3.89425914941389451e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["13c4c842f343b"],[-5.76311841264158575e-01,3.89425914941389451e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1506_2": [ +[[3,0,0,5,["5c024c96738c"],[-1.65316320263898253e-02,2.01653388816312645e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["5c024c96738c"],[-1.65316320263898253e-02,2.01653388816312645e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1507_2": [ +[[3,0,0,5,["af5ce2cc2008"],[1.94204982449988572e-01,3.33155477605307060e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["af5ce2cc2008"],[1.94204982449988572e-01,3.33155477605307060e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1508_2": [ +[[3,0,0,5,["47bf89b41880"],[-1.16594058368866313e-01,1.06297110513129567e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["47bf89b41880"],[-1.16594058368866313e-01,1.06297110513129567e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1509_2": [ +[[3,0,0,5,["b52c7b201c6c"],[-3.59008571027955081e-01,-1.72741504070083429e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b52c7b201c6c"],[-3.59008571027955081e-01,-1.72741504070083429e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1510_2": [ +[[3,0,0,5,["d5b0f5681506"],[-3.94399898455892850e-01,2.55472157492795393e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["d5b0f5681506"],[-3.94399898455892850e-01,2.55472157492795393e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1511_2": [ +[[3,0,0,5,["d1cb883ad0fa"],[-2.51500611923374584e-01,3.86763367227448862e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["d1cb883ad0fa"],[-2.51500611923374584e-01,3.86763367227448862e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1512_2": [ +[[3,0,0,5,["ac7f8c361d0a"],[-3.07348951802501658e-01,2.22319747091546394e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["ac7f8c361d0a"],[-3.07348951802501658e-01,2.22319747091546394e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1513_2": [ +[[3,0,0,5,["8da80d61aff6"],[-3.05669680181943959e-01,-6.00161073164045752e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8da80d61aff6"],[-3.05669680181943959e-01,-6.00161073164045752e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1514_2": [ +[[3,0,0,5,["14c97720d867f"],[-4.54119705351512082e-01,5.73312362604555981e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["14c97720d867f"],[-4.54119705351512082e-01,5.73312362604555981e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1515_2": [ +[[3,0,0,5,["10339cde93456"],[-3.01290132667841548e-01,4.83915193763406748e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["10339cde93456"],[-3.01290132667841548e-01,4.83915193763406748e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1516_2": [ +[[3,0,0,5,["ea984045d4d5"],[6.84162504034676322e-02,5.11322438723711636e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["ea984045d4d5"],[6.84162504034676322e-02,5.11322438723711636e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1517_2": [ +[[3,0,0,5,["c13c69da0348"],[-4.09413171940952114e-01,-1.13783699359768689e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c13c69da0348"],[-4.09413171940952114e-01,-1.13783699359768689e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1518_2": [ +[[3,0,0,5,["bc730b385627"],[-4.11910821687227480e-01,-4.53942730172763875e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["bc730b385627"],[-4.11910821687227480e-01,-4.53942730172763875e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1519_2": [ +[[3,0,0,5,["99bb677cbc0f"],[-5.52348327855662624e-02,3.33517484333290593e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["99bb677cbc0f"],[-5.52348327855662624e-02,3.33517484333290593e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1520_2": [ +[[3,0,0,5,["d97417069d9e"],[-4.72147177637887827e-01,-7.57507583315530086e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d97417069d9e"],[-4.72147177637887827e-01,-7.57507583315530086e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1521_2": [ +[[3,0,0,5,["9a789d8605a9"],[-5.27570687884623413e-02,3.35563762500605489e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["9a789d8605a9"],[-5.27570687884623413e-02,3.35563762500605489e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1522_2": [ +[[3,0,0,5,["50adaa4522af"],[-8.65677087590776828e-02,1.54860029630265378e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["50adaa4522af"],[-8.65677087590776828e-02,1.54860029630265378e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1523_2": [ +[[3,0,0,5,["51389b21aa07"],[-1.50139684689128916e-01,9.67397556343299186e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["51389b21aa07"],[-1.50139684689128916e-01,9.67397556343299186e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1524_2": [ +[[3,0,0,5,["fc2f74087122"],[-5.11825082330546688e-01,2.13479556454508501e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["fc2f74087122"],[-5.11825082330546688e-01,2.13479556454508501e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1525_2": [ +[[3,0,0,5,["57f91802d577"],[1.84108845080999617e-01,5.94025493439551688e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["57f91802d577"],[1.84108845080999617e-01,5.94025493439551688e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1526_2": [ +[[3,0,0,5,["74e74d93c5ad"],[-1.20000362090287582e-01,-2.27347171452199681e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["74e74d93c5ad"],[-1.20000362090287582e-01,-2.27347171452199681e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1527_2": [ +[[3,0,0,5,["1018390e1fb9"],[2.83510691725136765e-02,2.11858924271795118e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["1018390e1fb9"],[2.83510691725136765e-02,2.11858924271795118e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1528_2": [ +[[3,0,0,5,["c74ef8934227"],[-4.00447926861846715e-01,1.78141258869677827e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c74ef8934227"],[-4.00447926861846715e-01,1.78141258869677827e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1529_2": [ +[[3,0,0,5,["4285d10f373d"],[-1.06025318886124917e-01,1.00786587448080167e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["4285d10f373d"],[-1.06025318886124917e-01,1.00786587448080167e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1530_2": [ +[[3,0,0,5,["6a1d9210b9ac"],[1.50250332962660327e-01,1.78542099559452133e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6a1d9210b9ac"],[1.50250332962660327e-01,1.78542099559452133e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1531_2": [ +[[3,0,0,5,["131e8b0f8d03f"],[-6.07238065354120504e-01,2.89462307411523456e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["131e8b0f8d03f"],[-6.07238065354120504e-01,2.89462307411523456e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1532_2": [ +[[3,0,0,5,["5f8bf90480c6"],[1.17748238013662992e-01,1.74015465110850059e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["5f8bf90480c6"],[1.17748238013662992e-01,1.74015465110850059e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1533_2": [ +[[3,0,0,5,["97879bf8a06c"],[-2.51372850720918084e-01,2.18736180001986774e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["97879bf8a06c"],[-2.51372850720918084e-01,2.18736180001986774e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1534_2": [ +[[3,0,0,5,["7511e6f17592"],[2.26893760824143809e-01,-1.21631891054786251e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7511e6f17592"],[2.26893760824143809e-01,-1.21631891054786251e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1535_2": [ +[[3,0,0,5,["df6179eca852"],[-4.00948711002943714e-01,2.83789938266209241e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["df6179eca852"],[-4.00948711002943714e-01,2.83789938266209241e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1536_2": [ +[[3,0,0,5,["939e21726f4f"],[-1.96808373195593356e-01,2.58149570016872831e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["939e21726f4f"],[-1.96808373195593356e-01,2.58149570016872831e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1537_2": [ +[[3,0,0,5,["3d02862d0fb6"],[1.25241428863977655e-01,4.81046125551757436e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3d02862d0fb6"],[1.25241428863977655e-01,4.81046125551757436e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1538_2": [ +[[3,0,0,5,["ab9e8c19d0f3"],[-1.48455760482283650e-01,3.46969434088984230e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["ab9e8c19d0f3"],[-1.48455760482283650e-01,3.46969434088984230e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1539_2": [ +[[3,0,0,5,["a8957ef63c54"],[-2.63404614839728823e-01,2.60866588881868033e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["a8957ef63c54"],[-2.63404614839728823e-01,2.60866588881868033e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1540_2": [ +[[3,0,0,5,["66f539db70b7"],[-3.11684632202785528e-02,2.24251170460738281e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["66f539db70b7"],[-3.11684632202785528e-02,2.24251170460738281e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1541_2": [ +[[3,0,0,5,["6299470c0744"],[-1.39279643932359420e-01,-1.66170073801137408e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["6299470c0744"],[-1.39279643932359420e-01,-1.66170073801137408e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1542_2": [ +[[3,0,0,5,["c0387912bda3"],[-4.20980461034920705e-01,3.80615553089643788e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["c0387912bda3"],[-4.20980461034920705e-01,3.80615553089643788e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1543_2": [ +[[3,0,0,5,["d1cd808ae8ab"],[-2.78203930702723368e-01,3.68044354561327669e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["d1cd808ae8ab"],[-2.78203930702723368e-01,3.68044354561327669e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1544_2": [ +[[3,0,0,5,["dcf38d9e9e8f"],[-4.03652888706617419e-01,2.70445966103650015e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["dcf38d9e9e8f"],[-4.03652888706617419e-01,2.70445966103650015e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1545_2": [ +[[3,0,0,5,["95fd43df1f0d"],[-1.28488213492744113e-01,3.03773937661935278e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["95fd43df1f0d"],[-1.28488213492744113e-01,3.03773937661935278e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1546_2": [ +[[3,0,0,5,["bc2b1a46b1a6"],[1.37550755019023557e-01,3.90255246524435440e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["bc2b1a46b1a6"],[1.37550755019023557e-01,3.90255246524435440e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1547_2": [ +[[3,0,0,5,["101d949d19fe9"],[-8.05864874597561065e-02,5.61259619619103201e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["101d949d19fe9"],[-8.05864874597561065e-02,5.61259619619103201e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1548_2": [ +[[3,0,0,5,["7c1b4d12ec44"],[-1.20967237922344623e-01,2.44639837738317323e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["7c1b4d12ec44"],[-1.20967237922344623e-01,2.44639837738317323e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1549_2": [ +[[3,0,0,5,["affe1a0de8fb"],[-3.25398977730324890e-01,2.09508063895237434e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["affe1a0de8fb"],[-3.25398977730324890e-01,2.09508063895237434e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1550_2": [ +[[3,0,0,5,["a99f643961e8"],[-2.62321068083043785e-01,2.65178638751587703e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a99f643961e8"],[-2.62321068083043785e-01,2.65178638751587703e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1551_2": [ +[[3,0,0,5,["acaa0caaafb3"],[-2.82918052344248827e-01,2.53227037689186807e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["acaa0caaafb3"],[-2.82918052344248827e-01,2.53227037689186807e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1552_2": [ +[[3,0,0,5,["b3cca8d8133a"],[-3.32378673741142272e-01,2.14131436761698407e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["b3cca8d8133a"],[-3.32378673741142272e-01,2.14131436761698407e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1553_2": [ +[[3,0,0,5,["b618936ee0ca"],[-7.17688095791404745e-02,3.93949357320891203e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["b618936ee0ca"],[-7.17688095791404745e-02,3.93949357320891203e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1554_2": [ +[[3,0,0,5,["e56a2fcc7b36"],[1.25306487796170013e-01,4.88678721512991521e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["e56a2fcc7b36"],[1.25306487796170013e-01,4.88678721512991521e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1555_2": [ +[[3,0,0,5,["bf7200f83f85"],[1.35884582944982402e-01,3.98459855210133607e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["bf7200f83f85"],[1.35884582944982402e-01,3.98459855210133607e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1556_2": [ +[[3,0,0,5,["97b7a5e6d14e"],[-4.11312965466463787e-02,3.31084909957789275e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["97b7a5e6d14e"],[-4.11312965466463787e-02,3.31084909957789275e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1557_2": [ +[[3,0,0,5,["c9ff1237348f"],[2.21518613667166991e-01,3.85017469863249251e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["c9ff1237348f"],[2.21518613667166991e-01,3.85017469863249251e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1558_2": [ +[[3,0,0,5,["cd2e06d7897f"],[-8.99108595321586046e-02,4.42146001050036597e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["cd2e06d7897f"],[-8.99108595321586046e-02,4.42146001050036597e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1559_2": [ +[[3,0,0,5,["edb3bbae10fd"],[-5.13994439186596264e-01,-9.50682769632996971e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["edb3bbae10fd"],[-5.13994439186596264e-01,-9.50682769632996971e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1560_2": [ +[[3,0,0,5,["5317c7df8146"],[-1.74561795681955956e-01,5.39995301432489860e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["5317c7df8146"],[-8.52503955176329153e-02,1.61617263407990430e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1561_2": [ +[[3,0,0,5,["5bf897d361f9"],[1.38130710647437982e-01,-1.47727991210549831e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5bf897d361f9"],[1.38130710647437982e-01,-1.47727991210549831e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1562_2": [ +[[3,0,0,5,["7f9d9b57ec4c"],[-2.72964903277951920e-01,6.51401425457679428e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["7f9d9b57ec4c"],[-2.72964903277951920e-01,6.51401425457679428e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1563_2": [ +[[3,0,0,5,["6df315f3ae33"],[-2.36530882041390778e-01,5.01148310514452355e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["6df315f3ae33"],[-2.36530882041390778e-01,5.01148310514452355e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1564_2": [ +[[3,0,0,5,["4bbbc8406d19"],[-1.39645280009059486e-01,9.07452175891830665e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["4bbbc8406d19"],[-1.62910683172660276e-01,-3.45775657375401169e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"1565_2": [ +[[3,0,0,5,["4b1fa624879b"],[1.32031364737907081e-01,-9.92889644814140826e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["4b1fa624879b"],[1.32031364737907081e-01,-9.92889644814140826e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1566_2": [ +[[3,0,0,5,["bfc57729b7a7"],[-2.92174023146550110e-01,3.04094352656962219e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["bfc57729b7a7"],[-2.92174023146550110e-01,3.04094352656962219e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1567_2": [ +[[3,0,0,5,["aa94944a35ae"],[-2.44243503184387922e-01,2.84697739654931226e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["aa94944a35ae"],[-2.44243503184387922e-01,2.84697739654931226e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1568_2": [ +[[3,0,0,5,["8a342b1c58b8"],[2.76565723908449246e-01,-1.25994896651483584e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8a342b1c58b8"],[2.76565723908449246e-01,-1.25994896651483584e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1569_2": [ +[[3,0,0,5,["1133226403bc2"],[-2.70493601192416500e-01,5.41345056652974499e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["1133226403bc2"],[-2.70493601192416500e-01,5.41345056652974499e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1570_2": [ +[[3,0,0,5,["e93f26efa087"],[-4.70593789039852717e-01,2.04017575281618846e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["e93f26efa087"],[-4.70593789039852717e-01,2.04017575281618846e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1571_2": [ +[[3,0,0,5,["2e87d0b7184e"],[-9.54072385453407223e-02,3.69755600275212815e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["2e87d0b7184e"],[-9.54072385453407223e-02,3.69755600275212815e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1572_2": [ +[[3,0,0,5,["64969401cc4e"],[-2.07751978662935433e-01,-7.59387210320308093e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["64969401cc4e"],[-2.07751978662935433e-01,-7.59387210320308093e-02]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1573_2": [ +[[3,0,0,5,["7c67e46ba931"],[-1.99113013214089002e-01,1.87604025623117399e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["7c67e46ba931"],[-1.99113013214089002e-01,1.87604025623117399e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1574_2": [ +[[3,0,0,5,["7d2b9ffd64c7"],[-2.71314719349188216e-01,-4.63933213634237784e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["7d2b9ffd64c7"],[-2.71314719349188216e-01,-4.63933213634237784e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1575_2": [ +[[3,0,0,5,["edbcefeb180"],[1.69935074070606124e-02,2.79077317227247046e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["edbcefeb180"],[1.69935074070606124e-02,2.79077317227247046e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1576_2": [ +[[3,0,0,5,["9e3cbc8a57ef"],[3.22730800897409909e-01,-1.30100497312824775e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9e3cbc8a57ef"],[3.22730800897409909e-01,-1.30100497312824775e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1577_2": [ +[[3,0,0,5,["22041a3aa659"],[-6.87964794585837064e-02,2.93664465925442819e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["22041a3aa659"],[-6.87964794585837064e-02,2.93664465925442819e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1578_2": [ +[[3,0,0,5,["7e6e28a78654"],[1.83122032530264128e-01,2.09196591246917585e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["7e6e28a78654"],[1.83122032530264128e-01,2.09196591246917585e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1579_2": [ +[[3,0,0,5,["b728be08a1f"],[1.87754095685120637e-02,-1.67682463897876263e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["b728be08a1f"],[1.87754095685120637e-02,-1.67682463897876263e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1580_2": [ +[[3,0,0,5,["10ddee4c53969"],[2.81139328660227450e-01,5.22633554709052150e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["10ddee4c53969"],[2.81139328660227450e-01,5.22633554709052150e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1581_2": [ +[[3,0,0,5,["f1ed25a2b618"],[-2.32177801978091014e-01,4.78664034414544748e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["f1ed25a2b618"],[-2.32177801978091014e-01,4.78664034414544748e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1582_2": [ +[[3,0,0,5,["51ce9ad75324"],[-1.78027755121160813e-01,2.58562836445693639e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["51ce9ad75324"],[-1.78027755121160813e-01,2.58562836445693639e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1583_2": [ +[[3,0,0,5,["988ab4cd249a"],[-3.25479852547816750e-01,8.11472748964213036e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["988ab4cd249a"],[-3.25479852547816750e-01,8.11472748964213036e-02]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1584_2": [ +[[3,0,0,5,["128b7a1497619"],[-1.30473458698814770e-01,6.39310251456035261e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["128b7a1497619"],[-1.30473458698814770e-01,6.39310251456035261e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1585_2": [ +[[3,0,0,5,["988c39288d66"],[-3.33057548865501873e-01,4.00428062779139282e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["988c39288d66"],[-3.33057548865501873e-01,4.00428062779139282e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1586_2": [ +[[3,0,0,5,["51c489b11d85"],[-1.69147208245788994e-01,-6.09962749047320008e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["51c489b11d85"],[-1.69147208245788994e-01,-6.09962749047320008e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1587_2": [ +[[3,0,0,5,["62805c9e3101"],[1.71493733093835754e-01,1.32319491950763007e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["62805c9e3101"],[1.71493733093835754e-01,1.32319491950763007e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1588_2": [ +[[3,0,0,5,["f959fa5d9bc8"],[-1.89799430426162208e-01,5.14433310919740650e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["f959fa5d9bc8"],[-1.89799430426162208e-01,5.14433310919740650e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1589_2": [ +[[3,0,0,5,["8cbc72923202"],[2.34198787874255521e-01,2.02311741972189069e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8cbc72923202"],[2.34198787874255521e-01,2.02311741972189069e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1590_2": [ +[[3,0,0,5,["2d8e94f91b5e"],[3.02561672590205694e-02,9.55026712764966978e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["2d8e94f91b5e"],[3.02561672590205694e-02,9.55026712764966978e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1591_2": [ +[[3,0,0,5,["48a8d3bb1c0f"],[-5.60632925388212522e-02,1.49621254552324889e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["48a8d3bb1c0f"],[-5.60632925388212522e-02,1.49621254552324889e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1592_2": [ +[[3,0,0,5,["6c404df77daf"],[2.00691724175213387e-01,1.28020117999255806e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["6c404df77daf"],[2.00691724175213387e-01,1.28020117999255806e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1593_2": [ +[[3,0,0,5,["95354b6776a3"],[2.32056973639729325e-01,2.31963827565020597e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["95354b6776a3"],[2.32056973639729325e-01,2.31963827565020597e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1594_2": [ +[[3,0,0,5,["8e44eaf62891"],[-1.09010526977613056e-01,-2.93247154260079967e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["8e44eaf62891"],[-1.09010526977613056e-01,-2.93247154260079967e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1595_2": [ +[[3,0,0,5,["7969bc92b163"],[-2.65157901996748990e-01,-3.12248656961578927e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["7969bc92b163"],[-2.65157901996748990e-01,-3.12248656961578927e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1596_2": [ +[[3,0,0,5,["1271a7d7b5dd8"],[-6.45501619848500185e-01,6.67084367630170483e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["1271a7d7b5dd8"],[-6.45501619848500185e-01,6.67084367630170483e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1597_2": [ +[[3,0,0,5,["5ca35951a0cc"],[-1.13741019050635730e-01,1.69003217451224791e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["5ca35951a0cc"],[-1.13741019050635730e-01,1.69003217451224791e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1598_2": [ +[[3,0,0,5,["a3709fbff229"],[-2.75006008064260954e-01,2.31400014586351427e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["a3709fbff229"],[-2.75006008064260954e-01,2.31400014586351427e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1599_2": [ +[[3,0,0,5,["cbe300b78159"],[-4.30018328511649561e-01,-1.26899362654778497e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["cbe300b78159"],[-4.30018328511649561e-01,-1.26899362654778497e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1600_2": [ +[[3,0,0,5,["3fae31227030"],[-1.01129273094515970e-02,1.39669121074105090e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["3fae31227030"],[-1.01129273094515970e-02,1.39669121074105090e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1601_2": [ +[[3,0,0,5,["3e571fa4fab2"],[-1.09154137130643827e-01,-8.29364028850028551e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["3e571fa4fab2"],[-1.09154137130643827e-01,-8.29364028850028551e-02]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1602_2": [ +[[3,0,0,5,["65d54d7016c1"],[-1.44498647963530263e-01,-1.71074251150007711e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["65d54d7016c1"],[-2.23143736921880859e-01,-1.87917892272809264e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1603_2": [ +[[3,0,0,5,["3f12ad628b2f"],[-1.28869700032995554e-01,5.12833867990745706e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["3f12ad628b2f"],[-1.27387469350645627e-01,-5.48618082149691308e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1604_2": [ +[[3,0,0,5,["d09fdd46cf84"],[4.81163464362076160e-02,4.56239834511004916e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["d09fdd46cf84"],[4.81163464362076160e-02,4.56239834511004916e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1605_2": [ +[[3,0,0,5,["c33ba17e1cf1"],[-1.41801729449491765e-01,4.05227643349482358e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c33ba17e1cf1"],[-1.41801729449491765e-01,4.05227643349482358e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1606_2": [ +[[3,0,0,5,["cff3ada1f843"],[-4.14240806129567152e-01,1.93699787994841555e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["cff3ada1f843"],[-4.14240806129567152e-01,1.93699787994841555e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1607_2": [ +[[3,0,0,5,["d0dc8333e073"],[-3.23124562635814461e-01,3.26402761701407196e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["d0dc8333e073"],[-3.23124562635814461e-01,3.26402761701407196e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1608_2": [ +[[3,0,0,5,["631ebe6586c5"],[-2.15405972293247427e-01,-3.33174092946484229e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["631ebe6586c5"],[-2.15405972293247427e-01,-3.33174092946484229e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1609_2": [ +[[3,0,0,5,["c2897befa605"],[-3.97670123156947275e-01,1.57683331746702460e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c2897befa605"],[-3.97670123156947275e-01,1.57683331746702460e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1610_2": [ +[[3,0,0,5,["d193dc6d17c4"],[-4.19841962441288241e-01,-1.90079392343366099e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["d193dc6d17c4"],[-4.31279525958715215e-01,1.62466671379090238e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1611_2": [ +[[3,0,0,5,["2a5c546b9bc9"],[-8.05797785087479929e-02,4.67355318342034254e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["2a5c546b9bc9"],[-9.00255192923707509e-02,-2.39314963277207637e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1612_2": [ +[[3,0,0,5,["d230ec06be7c"],[-4.01452982153124971e-01,2.29081471345587928e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["d230ec06be7c"],[-4.01452982153124971e-01,2.29081471345587928e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1613_2": [ +[[3,0,0,5,["13239debc87a5"],[-4.52061402712485960e-01,4.99104844543948101e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["13239debc87a5"],[-4.52061402712485960e-01,4.99104844543948101e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1614_2": [ +[[3,0,0,5,["9af5b2803869"],[-6.75098426761775172e-02,3.34005793635695658e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["9af5b2803869"],[-6.75098426761775172e-02,3.34005793635695658e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1615_2": [ +[[3,0,0,5,["4e7d232273d6"],[-1.26984633741998143e-01,1.16898357583984619e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["4e7d232273d6"],[-1.26984633741998143e-01,1.16898357583984619e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1616_2": [ +[[3,0,0,5,["5fccc3d17834"],[-5.87153553714030441e-02,-2.02318372620543807e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5fccc3d17834"],[-5.87153553714030441e-02,-2.02318372620543807e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1617_2": [ +[[3,0,0,5,["8ac952e640f0"],[-2.80047890022241841e-01,-1.21313245302265088e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["8ac952e640f0"],[-2.80047890022241841e-01,-1.21313245302265088e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1618_2": [ +[[3,0,0,5,["83d627274f39"],[-1.09371427164068086e-01,2.68489534920031692e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["83d627274f39"],[1.12513493003813636e-01,2.67188048635339848e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1619_2": [ +[[3,0,0,5,["c2e6b841c17f"],[1.84764647414649152e-01,3.86721414646494344e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["c2e6b841c17f"],[-1.42804999616150896e-01,4.04101669837030664e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1620_2": [ +[[3,0,0,5,["b4becc16b21c"],[-3.73512636574572565e-01,1.35886877186373572e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["b4becc16b21c"],[-3.73512636574572565e-01,1.35886877186373572e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1621_2": [ +[[3,0,0,5,["a86bd87a18c7"],[3.75298881656863786e-03,3.70343278143213994e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a86bd87a18c7"],[3.75298881656863786e-03,3.70343278143213994e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1622_2": [ +[[3,0,0,5,["a0ba93f68841"],[-3.47669688925050679e-01,6.36408253027495874e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a0ba93f68841"],[-3.47669688925050679e-01,6.36408253027495874e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1623_2": [ +[[3,0,0,5,["c89a522af8a6"],[1.65656943762248543e-01,4.08844324436726136e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c89a522af8a6"],[1.65656943762248543e-01,4.08844324436726136e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1624_2": [ +[[3,0,0,5,["9c8f9b15ccec"],[-2.95311281571320805e-01,1.76976796086782628e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["9c8f9b15ccec"],[-2.95311281571320805e-01,1.76976796086782628e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1625_2": [ +[[3,0,0,5,["5c0006ce5b38"],[-5.38110139812513835e-02,1.95022715928267087e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["5c0006ce5b38"],[-5.38110139812513835e-02,1.95022715928267087e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1626_2": [ +[[3,0,0,5,["9b2d53aa4c51"],[-3.34163207513070604e-01,-6.91252154528919777e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["9b2d53aa4c51"],[-3.34163207513070604e-01,-6.91252154528919777e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1627_2": [ +[[3,0,0,5,["86b73922f8bc"],[-2.95705216156279149e-01,1.78419485361998240e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["86b73922f8bc"],[-2.95705216156279149e-01,1.78419485361998240e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1628_2": [ +[[3,0,0,5,["f90ff088817f"],[-1.89154941378879282e-01,5.13993004612444460e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["f90ff088817f"],[-1.89154941378879282e-01,5.13993004612444460e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1629_2": [ +[[3,0,0,5,["a5eebc028692"],[-3.61870479663313649e-01,4.68416456432875494e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["a5eebc028692"],[-3.61870479663313649e-01,4.68416456432875494e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1630_2": [ +[[3,0,0,5,["bd2edf9f74fa"],[-3.63260762982463015e-01,2.02762482260927995e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["bd2edf9f74fa"],[-3.63260762982463015e-01,2.02762482260927995e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1631_2": [ +[[3,0,0,5,["6055a077c6aa"],[-1.12083784884954490e-01,1.79761389155654011e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["6055a077c6aa"],[-1.12083784884954490e-01,1.79761389155654011e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1632_2": [ +[[3,0,0,5,["c47025748af6"],[-2.72144519488710268e-01,3.35465455967493553e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c47025748af6"],[-2.72144519488710268e-01,3.35465455967493553e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1633_2": [ +[[3,0,0,5,["a83f93aa53d7"],[-3.31756339209726692e-01,1.63781660053271827e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a83f93aa53d7"],[-3.31756339209726692e-01,1.63781660053271827e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1634_2": [ +[[3,0,0,5,["c5cc27577894"],[-3.11125341696366409e-01,3.03961032194757341e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c5cc27577894"],[-3.11125341696366409e-01,3.03961032194757341e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1635_2": [ +[[3,0,0,5,["113ea5872a095"],[-4.33048836416891403e-01,4.24979389685287368e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["113ea5872a095"],[-4.33048836416891403e-01,4.24979389685287368e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1636_2": [ +[[3,0,0,5,["58ae57b071b0"],[8.26344135244767297e-02,1.76638309690211631e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["58ae57b071b0"],[8.26344135244767297e-02,1.76638309690211631e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1637_2": [ +[[3,0,0,5,["1581dd18af62a"],[-4.93097835792060790e-01,5.74003391332950086e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["1581dd18af62a"],[-4.93097835792060790e-01,5.74003391332950086e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1638_2": [ +[[3,0,0,5,["1206493e8840d"],[1.62011217046280381e-01,6.13139465563357855e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["1206493e8840d"],[1.62011217046280381e-01,6.13139465563357855e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1639_2": [ +[[3,0,0,5,["6260824f53b8"],[2.06152328732637918e-01,6.55843553010378721e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["6260824f53b8"],[2.06152328732637918e-01,6.55843553010378721e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1640_2": [ +[[3,0,0,5,["39de646953b6"],[-9.60447297254686527e-03,-1.26891696598281173e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["39de646953b6"],[-9.60447297254686527e-03,-1.26891696598281173e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1641_2": [ +[[3,0,0,5,["c0a2716330c7"],[-4.19666664422242652e-01,5.76497366702880820e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["c0a2716330c7"],[-4.19666664422242652e-01,5.76497366702880820e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1642_2": [ +[[3,0,0,5,["7d427c032395"],[4.84067101702299885e-03,2.75406466140405704e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["7d427c032395"],[4.84067101702299885e-03,2.75406466140405704e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1643_2": [ +[[3,0,0,5,["33fb53c31203"],[1.12879073665134916e-01,1.80243795708703095e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["33fb53c31203"],[1.12879073665134916e-01,1.80243795708703095e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1644_2": [ +[[3,0,0,5,["3f1da635a43b"],[1.37141900481675655e-01,-2.13456715523741361e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3f1da635a43b"],[1.37141900481675655e-01,-2.13456715523741361e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1645_2": [ +[[3,0,0,5,["10af635e1503a"],[-3.24193457037644128e-01,4.89420385510677680e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["10af635e1503a"],[-3.24193457037644128e-01,4.89420385510677680e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1646_2": [ +[[3,0,0,5,["69fcad4b2659"],[4.37456610839178084e-02,2.28925692144753501e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["69fcad4b2659"],[4.37456610839178084e-02,2.28925692144753501e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1647_2": [ +[[3,0,0,5,["14c47acd6029e"],[-1.29851124218768765e-01,7.19060926330216343e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["14c47acd6029e"],[-1.29851124218768765e-01,7.19060926330216343e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1648_2": [ +[[3,0,0,5,["dae1d438988c"],[-1.39656903379992925e-01,4.60620840805099241e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["dae1d438988c"],[-1.39656903379992925e-01,4.60620840805099241e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1649_2": [ +[[3,0,0,5,["e1534ca028fa"],[8.01013436412123525e-03,4.95431018458923844e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["e1534ca028fa"],[8.01013436412123525e-03,4.95431018458923844e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1650_2": [ +[[3,0,0,5,["bd3a03ccd7e2"],[-2.95616136374185767e-01,2.92851060634731986e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["bd3a03ccd7e2"],[-2.95616136374185767e-01,2.92851060634731986e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1651_2": [ +[[3,0,0,5,["fa69b7c8908c"],[-5.05730717892345361e-01,2.17869681051424791e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["fa69b7c8908c"],[-5.05730717892345361e-01,2.17869681051424791e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1652_2": [ +[[3,0,0,5,["9457bd04ad72"],[-7.86125883935551162e-02,3.16595078033863164e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9457bd04ad72"],[-7.86125883935551162e-02,3.16595078033863164e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1653_2": [ +[[3,0,0,5,["b39436385fe4"],[-3.94001391085781527e-01,2.66000969263496534e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["b39436385fe4"],[-3.94001391085781527e-01,2.66000969263496534e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1654_2": [ +[[3,0,0,5,["af37b6f790e9"],[-2.79046954769326894e-01,2.65696794119303470e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["af37b6f790e9"],[-2.79046954769326894e-01,2.65696794119303470e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1655_2": [ +[[3,0,0,5,["978406b3d9e5"],[-1.10287469151535505e-01,3.14404182226895312e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["978406b3d9e5"],[-1.10287469151535505e-01,3.14404182226895312e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1656_2": [ +[[3,0,0,5,["bb4c56b4b50e"],[-4.11726689332467921e-01,-1.09808096378777274e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["bb4c56b4b50e"],[-4.11726689332467921e-01,-1.09808096378777274e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1657_2": [ +[[3,0,0,5,["cf5aa138bfed"],[-3.26779643054674718e-01,3.18008596112490771e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["cf5aa138bfed"],[-3.26779643054674718e-01,3.18008596112490771e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1658_2": [ +[[3,0,0,5,["de66b5863f6a"],[7.32701889207654222e-03,4.89010538424152985e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["de66b5863f6a"],[7.32701889207654222e-03,4.89010538424152985e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1659_2": [ +[[3,0,0,5,["105c8bfc68df1"],[-4.63786235549403347e-01,3.41024473027352337e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["105c8bfc68df1"],[-4.63786235549403347e-01,3.41024473027352337e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1660_2": [ +[[3,0,0,5,["beb65b54124c"],[-3.67338274556369582e-01,2.02343495904600323e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["beb65b54124c"],[-3.67338274556369582e-01,2.02343495904600323e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1661_2": [ +[[3,0,0,5,["cacb21cb9a9e"],[-4.07541879135153051e-01,1.81049353175873229e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["cacb21cb9a9e"],[-4.07541879135153051e-01,1.81049353175873229e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1662_2": [ +[[3,0,0,5,["89a093a124df"],[-2.99177457685388282e-01,4.56855024978226887e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["89a093a124df"],[-2.99177457685388282e-01,4.56855024978226887e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1663_2": [ +[[3,0,0,5,["90d3c34b50b4"],[-2.43602741504646364e-01,2.05149169081839028e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["90d3c34b50b4"],[-2.43602741504646364e-01,2.05149169081839028e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1664_2": [ +[[3,0,0,5,["7b427ba9e826"],[-2.41123015402085861e-01,1.23807538315849966e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["7b427ba9e826"],[-2.41123015402085861e-01,1.23807538315849966e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1665_2": [ +[[3,0,0,5,["c1decac822aa"],[-7.06408887836156157e-02,4.20432028352761389e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["c1decac822aa"],[-7.06408887836156157e-02,4.20432028352761389e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1666_2": [ +[[3,0,0,5,["6df95c3b050a"],[-2.41009730885380635e-01,1.99682236119436661e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["6df95c3b050a"],[-2.41009730885380635e-01,1.99682236119436661e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1667_2": [ +[[3,0,0,5,["10542507cda3a"],[-4.63504834018508838e-01,3.39456059554414602e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["10542507cda3a"],[-4.63504834018508838e-01,3.39456059554414602e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1668_2": [ +[[3,0,0,5,["13b564f104e1"],[2.60918805651500219e-02,-3.46054230993081136e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["13b564f104e1"],[2.60918805651500219e-02,-3.46054230993081136e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1669_2": [ +[[3,0,0,5,["27b5ebf43aee"],[-1.27493678540528607e-02,8.63888870691340849e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["27b5ebf43aee"],[-1.27493678540528607e-02,8.63888870691340849e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1670_2": [ +[[3,0,0,5,["109ddf53ed788"],[-3.21073458327281736e-01,4.88594766869195229e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["109ddf53ed788"],[-3.21073458327281736e-01,4.88594766869195229e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1671_2": [ +[[3,0,0,5,["95ea0bb0d291"],[6.34781017090266381e-02,3.23495715960942731e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["95ea0bb0d291"],[6.34781017090266381e-02,3.23495715960942731e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1672_2": [ +[[3,0,0,5,["a82833cc7168"],[-2.32167149885065593e-01,2.87813449541791111e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a82833cc7168"],[-2.32167149885065593e-01,2.87813449541791111e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1673_2": [ +[[3,0,0,5,["45513d4a3ef5"],[3.29177029578383087e-02,1.48833684578710379e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["45513d4a3ef5"],[3.29177029578383087e-02,1.48833684578710379e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1674_2": [ +[[3,0,0,5,["6b45c1adf06b"],[-2.34550699136343216e-01,-2.51450899369459469e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["6b45c1adf06b"],[-2.34550699136343216e-01,-2.51450899369459469e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1675_2": [ +[[3,0,0,5,["ffa6c18bb5b9"],[-4.24981817990899069e-01,3.68022523048135375e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["ffa6c18bb5b9"],[-4.24981817990899069e-01,3.68022523048135375e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1676_2": [ +[[3,0,0,5,["5a1d63b22702"],[1.01186981328433401e-01,-1.70383045625818019e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5a1d63b22702"],[1.01186981328433401e-01,-1.70383045625818019e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1677_2": [ +[[3,0,0,5,["31a1fc9a873e"],[-1.09051117421846172e-01,-4.49200516437778252e-03]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["31a1fc9a873e"],[-1.09051117421846172e-01,-4.49200516437778252e-03]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1678_2": [ +[[3,0,0,5,["1482c980d565e"],[-7.13157424852533639e-01,1.10469548451757493e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["1482c980d565e"],[-7.13157424852533639e-01,1.10469548451757493e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1679_2": [ +[[3,0,0,5,["9d13e21189c7"],[-2.73816568437883878e-01,2.10565188220542376e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["9d13e21189c7"],[-2.73816568437883878e-01,2.10565188220542376e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1680_2": [ +[[3,0,0,5,["3950925e45b4"],[-9.39371043428487706e-02,8.40297716738375167e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["3950925e45b4"],[-9.39371043428487706e-02,8.40297716738375167e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1681_2": [ +[[3,0,0,5,["1349b95cace01"],[-6.66285847322938496e-01,1.28877795935846695e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["1349b95cace01"],[-6.66285847322938496e-01,1.28877795935846695e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1682_2": [ +[[3,0,0,5,["75539f247231"],[-2.56722653967708325e-01,-2.56818236044865644e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["75539f247231"],[-2.56722653967708325e-01,-2.56818236044865644e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1683_2": [ +[[3,0,0,5,["6596078d7273"],[-2.13544820738410968e-01,-6.55876735931502086e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["6596078d7273"],[-2.13544820738410968e-01,-6.55876735931502086e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1684_2": [ +[[3,0,0,5,["6917003e9a13"],[-2.25993726896056235e-01,-4.82881247805879432e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6917003e9a13"],[-2.25993726896056235e-01,-4.82881247805879432e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1685_2": [ +[[3,0,0,5,["4ef1fbeacb9f"],[-1.64653437419498450e-01,5.50186614190444623e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["4ef1fbeacb9f"],[-1.64653437419498450e-01,5.50186614190444623e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1686_2": [ +[[3,0,0,5,["10c2cb1a8dbfd"],[-5.46010152759802914e-01,-2.22811867543947828e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["10c2cb1a8dbfe"],[-5.43639264082323770e-01,2.28535699143994991e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1687_2": [ +[[3,0,0,5,["ac6c19e90233"],[-2.27255978872205083e-01,3.03508594987497771e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["ac6c19e90233"],[-3.75307229389784114e-01,5.39187419383379829e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1688_2": [ +[[3,0,0,5,["f7ddd065fc5c"],[-2.72709330383411608e-01,4.71936974287598454e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["f7ddd065fc5c"],[-2.72709330383411608e-01,4.71936974287598454e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1689_2": [ +[[3,0,0,5,["6f61d75b5512"],[-2.97002746203972601e-03,2.44914023368442202e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["6f61d75b5512"],[-2.97002746203972601e-03,2.44914023368442202e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1690_2": [ +[[3,0,0,5,["6c04910e5988"],[-6.89177811864167128e-02,2.27316115607944180e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["6c04910e5988"],[-6.89177811864167128e-02,2.27316115607944180e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1691_2": [ +[[3,0,0,5,["550b0df92956"],[1.03151978933574473e-01,1.55990810707594074e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["550b0df92956"],[1.03151978933574473e-01,1.55990810707594074e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1692_2": [ +[[3,0,0,5,["98bd6ac50aaf"],[-2.77527998977527446e-01,1.89189465484748048e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["98bd6ac50aaf"],[-2.77527998977527446e-01,1.89189465484748048e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1693_2": [ +[[3,0,0,5,["599f5220985a"],[-1.94541714164883944e-01,3.15386809165702359e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["599f5220985a"],[-1.94541714164883944e-01,3.15386809165702359e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1694_2": [ +[[3,0,0,5,["61970c2464c8"],[-1.44750996438288565e-01,1.58434486388425555e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["61970c2464c8"],[-1.44750996438288565e-01,1.58434486388425555e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1695_2": [ +[[3,0,0,5,["2f2b42d5d676"],[3.57870446093107308e-02,-9.73566066758568549e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["2f2b42d5d676"],[3.57870446093107308e-02,-9.73566066758568549e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1696_2": [ +[[3,0,0,5,["9f06fdea1c07"],[7.20847832226938767e-02,-3.42194683234295527e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9f06fdea1c07"],[7.20847832226938767e-02,-3.42194683234295527e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1697_2": [ +[[3,0,0,5,["645870b2814a"],[-1.68298222008036347e-01,1.42714526625392080e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["645870b2814a"],[-1.68298222008036347e-01,1.42714526625392080e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1698_2": [ +[[3,0,0,5,["dca5b453c9d0"],[-3.44358577662876697e-01,3.41825195805908366e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["dca5b453c9d0"],[-3.44358577662876697e-01,3.41825195805908366e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1699_2": [ +[[3,0,0,5,["afedcc18c088"],[-2.77943411088219017e-01,2.69104436405404046e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["afedcc18c088"],[-2.77943411088219017e-01,2.69104436405404046e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1700_2": [ +[[3,0,0,5,["42f053a404d6"],[-1.17975779413572623e-01,8.80314352565410851e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["42f053a404d6"],[-1.17975779413572623e-01,8.80314352565410851e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1701_2": [ +[[3,0,0,5,["3dfc8f2e1358"],[-1.36083260368057096e-01,-7.85693234313400435e-03]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["3dfc8f2e1358"],[-1.36083260368057096e-01,-7.85693234313400435e-03]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1702_2": [ +[[3,0,0,5,["6b068624113b"],[-1.24733852117117267e-01,1.99579077876202521e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6b068624113b"],[-1.24733852117117267e-01,1.99579077876202521e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1703_2": [ +[[3,0,0,5,["432904b64d73"],[-1.33372719405191353e-01,6.34282208441996620e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["432904b64d73"],[-1.33372719405191353e-01,6.34282208441996620e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1704_2": [ +[[3,0,0,5,["2b6e7391a8b7"],[-4.90287855501995995e-02,-8.19617070745687348e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["2b6e7391a8b7"],[-4.90287855501995995e-02,-8.19617070745687348e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1705_2": [ +[[3,0,0,5,["8b5006767799"],[-1.72240303374570691e-01,2.53346813208309429e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8b5006767799"],[-1.72240303374570691e-01,2.53346813208309429e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1706_2": [ +[[3,0,0,5,["827ebc65de4f"],[-2.72439894630255586e-01,9.01305033339472317e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["827ebc65de4f"],[-2.72439894630255586e-01,9.01305033339472317e-02]],[["h", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1707_2": [ +[[3,0,0,5,["9583d0c54ca2"],[2.38275866665509428e-01,2.26550964359831214e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9583d0c54ca2"],[2.38275866665509484e-01,2.26550964359831242e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1708_2": [ +[[3,0,0,5,["421ac1118dd7"],[1.39864425699562450e-01,3.96109559632563946e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["421ac1118dd7"],[1.39864425699562450e-01,3.96109559632563946e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1709_2": [ +[[3,0,0,5,["749c930cc33c"],[-2.30690127544103202e-01,1.11978846806738863e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["749c930cc33c"],[-2.30690127544103202e-01,1.11978846806738863e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1710_2": [ +[[3,0,0,5,["aa0666fb23c4"],[-3.28722399782213515e-01,1.78141880835028438e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["aa0666fb23c4"],[-3.28722399782213515e-01,1.78141880835028438e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1711_2": [ +[[3,0,0,5,["be98764f28cb"],[-1.39857548669486215e-01,3.95101053427368787e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["be98764f28cb"],[-1.39857548669486215e-01,3.95101053427368787e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1712_2": [ +[[3,0,0,5,["429d283374ce"],[-3.15861852149873501e-02,1.43039559719743109e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["429d283374ce"],[-3.15861852149873917e-02,1.43039559719743165e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1713_2": [ +[[3,0,0,5,["1f23434bc261"],[4.01601068347129941e-02,-5.54586911813645042e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["1f23434bc261"],[4.01601068347129941e-02,-5.54586911813645042e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1714_2": [ +[[3,0,0,5,["633665cd345c"],[-1.24122045164916484e-01,-1.79421619523246645e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["633665cd345c"],[-1.24122045164916484e-01,-1.79421619523246645e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1715_2": [ +[[3,0,0,5,["d9ce0636a602"],[2.24026790568710721e-01,4.23335036984124724e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["d9ce0636a602"],[2.24026790568710721e-01,4.23335036984124724e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1716_2": [ +[[3,0,0,5,["a4bd85d7c168"],[1.11857191982943194e-01,3.44566291704058059e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a4bd85d7c168"],[1.11857191982943194e-01,3.44566291704058059e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1717_2": [ +[[3,0,0,5,["df8331218299"],[1.75232177287319241e-01,4.59211166168309870e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["df8331218299"],[1.75232177287319241e-01,4.59211166168309870e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1718_2": [ +[[3,0,0,5,["108cc4f299279"],[-3.43751370570002934e-02,5.81281611584615110e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["108cc4f299279"],[-3.43751370570002934e-02,5.81281611584615110e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1719_2": [ +[[3,0,0,5,["45d7241dcf84"],[1.27405303838753703e-01,8.57607448475573297e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["45d7241dcf84"],[1.27405303838753703e-01,8.57607448475573297e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1720_2": [ +[[3,0,0,5,["a7900e44c8c0"],[1.82260329104647692e-02,3.68023275203913480e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a7900e44c8c0"],[1.82260329104647692e-02,3.68023275203913480e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1721_2": [ +[[3,0,0,5,["901b0337d309"],[3.13187345828205732e-01,4.83097951665455438e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["901b0337d309"],[3.13187345828205732e-01,4.83097951665455438e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1722_2": [ +[[3,0,0,5,["655e10ea558"],[-1.45388140728995238e-03,-1.38557667838093701e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["655e10ea558"],[-1.45388140728995238e-03,-1.38557667838093701e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1723_2": [ +[[3,0,0,5,["7e673c7276c0"],[8.89579939607904879e-02,2.63344462461760132e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["7e673c7276c0"],[8.89579939607904879e-02,2.63344462461760132e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1724_2": [ +[[3,0,0,5,["c15ca8527887"],[-4.05570051491803196e-01,1.27727346607578396e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["c15ca8527887"],[-4.05570051491803196e-01,1.27727346607578396e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1725_2": [ +[[3,0,0,5,["c15443a07afa"],[2.53351369236013202e-01,3.41398765702169205e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["c15443a07afa"],[2.53351369236013202e-01,3.41398765702169205e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1726_2": [ +[[3,0,0,5,["765d9a29e819"],[-2.04066541331684004e-01,-1.61576904896900575e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["765d9a29e819"],[-2.58548960324650801e-01,3.00447100531864020e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1727_2": [ +[[3,0,0,5,["a5b6243b4664"],[-3.61487426390755429e-01,-4.60075405894089656e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["a5b6243b4664"],[-2.23077966578089704e-01,-2.88142454451062568e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1728_2": [ +[[3,0,0,5,["2e9723606216"],[9.38366215313570645e-02,-4.11263261794256249e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["2e9723606216"],[9.38366215313570645e-02,-4.11263261794256249e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1729_2": [ +[[3,0,0,5,["a52793c5f1ca"],[-3.60399250448769526e-01,-4.48466639702336939e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a52793c5f1ca"],[-3.60399250448769526e-01,-4.48466639702336939e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1730_2": [ +[[3,0,0,5,["101752c1a86b2"],[-3.11140011073409328e-01,4.72994629772014563e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["101752c1a86b2"],[-3.11140011073409328e-01,4.72994629772014563e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1731_2": [ +[[3,0,0,5,["735167e5a217"],[-1.78557904414319235e-01,-1.80065026019550989e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["735167e5a217"],[-1.78557904414319235e-01,-1.80065026019550989e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1732_2": [ +[[3,0,0,5,["a6c7d39b3e0e"],[-3.66451680716625150e-01,-1.48971346290904805e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a6c7d39b3e0e"],[-3.66451680716625150e-01,-1.48971346290904805e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1733_2": [ +[[3,0,0,5,["7521c11da0cb"],[-2.43907538536938556e-01,8.27909277336356525e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["7521c11da0cb"],[-2.43907538536938556e-01,8.27909277336356525e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1734_2": [ +[[3,0,0,5,["3311f6e9b850"],[9.35263048802475599e-02,6.21701777662355265e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["3311f6e9b850"],[9.35263048802475599e-02,6.21701777662355265e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1735_2": [ +[[3,0,0,5,["e3e117273339"],[1.50753202196314939e-01,4.77898000927672761e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["e3e117273339"],[1.50753202196314939e-01,4.77898000927672761e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1736_2": [ +[[3,0,0,5,["12c028231f3dd"],[-8.70018947830630690e-02,6.53966663685344285e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["12c028231f3dd"],[-8.70018947830630690e-02,6.53966663685344285e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1737_2": [ +[[3,0,0,5,["eca1867f2ddc"],[-9.33568589744430549e-02,5.11913942270080691e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["eca1867f2ddc"],[-9.33568589744430966e-02,5.11913942270080691e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1738_2": [ +[[3,0,0,5,["1bfa552c09a1"],[1.96074995534904276e-02,-5.83159050151929315e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["1bfa552c09a1"],[1.96074995534904276e-02,-5.83159050151929315e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1739_2": [ +[[3,0,0,5,["96bad9093900"],[-2.65312794930272045e-01,1.98680288902674917e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["96bad9093900"],[-2.65312794930272045e-01,1.98680288902674917e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1740_2": [ +[[3,0,0,5,["bcdbfda76bd9"],[-2.86703434163183279e-01,3.00466770274800177e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["bcdbfda76bd9"],[-2.86703434163183279e-01,3.00466770274800177e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1741_2": [ +[[3,0,0,5,["9989a4c381e4"],[-2.18130692633897671e-01,2.57711042229281651e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9989a4c381e4"],[-2.18130692633897671e-01,2.57711042229281651e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1742_2": [ +[[3,0,0,5,["3547604f6d64"],[1.16726729701989079e-01,1.00822814026393648e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3547604f6d64"],[1.16726729701989079e-01,1.00822814026393648e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1743_2": [ +[[3,0,0,5,["1059cefea7f0b"],[-3.19569742967301340e-01,4.78369509394394155e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["1059cefea7f0b"],[-3.19569742967301340e-01,4.78369509394394155e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1744_2": [ +[[3,0,0,5,["c85f489d70f1"],[-3.82351282588803354e-01,2.18989133687384402e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c85f489d70f1"],[-3.82351282588803354e-01,2.18989133687384402e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1745_2": [ +[[3,0,0,5,["96bd410566d0"],[2.35374044485868961e-01,2.33404151232502188e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["96bd410566d0"],[2.35374044485868961e-01,2.33404151232502188e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1746_2": [ +[[3,0,0,5,["7dd50884ec9d"],[-2.35836412770951437e-01,1.44735690269204242e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["7dd50884ec9d"],[-2.35836412770951437e-01,1.44735690269204242e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1747_2": [ +[[3,0,0,5,["bc40517605fe"],[-3.44078329486620149e-01,-2.30174545184537338e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["bc40517605fe"],[-3.44078329486620149e-01,-2.30174545184537338e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1748_2": [ +[[3,0,0,5,["6830b52f353e"],[-2.27723741511471039e-01,2.52272166027797118e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["6830b52f353e"],[-2.27723741511471039e-01,2.52272166027797118e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1749_2": [ +[[3,0,0,5,["cff520071ebe"],[-3.91849210748490384e-01,2.35755416292294934e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["cff520071ebe"],[-3.91849210748490384e-01,2.35755416292294934e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1750_2": [ +[[3,0,0,5,["bd088c28ae67"],[-3.04416718978724576e-01,2.83068285738489800e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["bd088c28ae67"],[-3.04416718978724576e-01,2.83068285738489800e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1751_2": [ +[[3,0,0,5,["41cce6a14de5"],[1.11078231623534252e-01,9.27293460688757010e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["41cce6a14de5"],[1.11078231623534252e-01,9.27293460688757010e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1752_2": [ +[[3,0,0,5,["63d35a99d81e"],[-1.22516123310548938e-01,-1.82149145569934862e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["63d35a99d81e"],[-1.22516123310548938e-01,-1.82149145569934862e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1753_2": [ +[[3,0,0,5,["9b97cb11cff4"],[-4.76707521557640929e-02,3.38815335691404096e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9b97cb11cff4"],[-4.76707521557640929e-02,3.38815335691404096e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1754_2": [ +[[3,0,0,5,["470926d1ab1b"],[3.06436186325332316e-02,1.53174092186292604e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["470926d1ab1b"],[3.06436186325332316e-02,1.53174092186292604e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1755_2": [ +[[3,0,0,5,["acbc16208774"],[-1.12937599588624482e-01,3.62669733918326020e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["acbc16208774"],[-1.12937599588624482e-01,3.62669733918326020e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1756_2": [ +[[3,0,0,5,["4c66be3551b0"],[-1.27594503624084837e-01,-1.09299767929450106e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["4c66be3551b0"],[-1.27594503624084837e-01,-1.09299767929450106e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1757_2": [ +[[3,0,0,5,["be6dec7fa65b"],[-3.42280181273468542e-01,2.41253166449866358e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["be6dec7fa65b"],[-3.42280181273468542e-01,2.41253166449866358e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1758_2": [ +[[3,0,0,5,["f46375c9bea9"],[2.92316382726521051e-01,4.50962439562165196e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["f46375c9bea9"],[2.92316382726521051e-01,4.50962439562165196e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1759_2": [ +[[3,0,0,5,["6c1568c34624"],[1.74340063195929873e-01,1.61544333081785396e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["6c1568c34624"],[1.74340063195929873e-01,1.61544333081785396e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1760_2": [ +[[3,0,0,5,["23ebbefb0c14"],[4.68614562209900970e-02,6.35889878998578961e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["23ebbefb0c14"],[4.68614562209900970e-02,6.35889878998578961e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1761_2": [ +[[3,0,0,5,["d69838aa968a"],[-2.50873942851313758e-01,3.99688009011689660e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d69838aa968a"],[-2.50873942851313758e-01,3.99688009011689660e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1762_2": [ +[[3,0,0,5,["1078f28d282ce"],[2.53593093922832358e-01,5.21147989788932842e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["1078f28d282ce"],[2.53593093922832358e-01,5.21147989788932842e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1763_2": [ +[[3,0,0,5,["120cb30d02fbc"],[-3.64674692204579876e-02,6.34016186636841117e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["120cb30d02fbc"],[-3.64674692204579876e-02,6.34016186636841117e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1764_2": [ +[[3,0,0,5,["dc798a8a5a81"],[-1.37939685511624610e-01,4.64792367510579174e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["dc798a8a5a81"],[-1.37939685511624610e-01,4.64792367510579174e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1765_2": [ +[[3,0,0,5,["7bb9dd67485b"],[-1.35907556958333842e-01,2.35700484318573433e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["7bb9dd67485b"],[-1.35907556958333842e-01,2.35700484318573433e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1766_2": [ +[[3,0,0,5,["af7792e2e67c"],[3.64713776285441771e-01,1.25971698998943588e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["af7792e2e67c"],[3.64713776285441771e-01,1.25971698998943588e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1767_2": [ +[[3,0,0,5,["6a8a1af3b614"],[-3.46533893847789654e-02,2.31705769902296355e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["6a8a1af3b614"],[-3.46533893847789654e-02,2.31705769902296355e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1768_2": [ +[[3,0,0,5,["86ff5bdb9bd5"],[-2.82564352210973813e-01,-9.10209262778286232e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["86ff5bdb9bd5"],[-2.82564352210973813e-01,-9.10209262778286232e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1769_2": [ +[[3,0,0,5,["5db3bdfaddb1"],[-8.58236711150439924e-02,1.87329101368299333e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5db3bdfaddb1"],[-8.58236711150439924e-02,1.87329101368299333e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1770_2": [ +[[3,0,0,5,["68d0723afce3"],[4.59700571112817424e-02,2.25858171353987447e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["68d0723afce3"],[4.59700571112817424e-02,2.25858171353987447e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1771_2": [ +[[3,0,0,5,["9135864d9b5f"],[-2.63075256412694192e-01,-1.80984770697359965e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["9135864d9b5f"],[-2.63075256412694192e-01,-1.80984770697359965e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1772_2": [ +[[3,0,0,5,["4f6c5271f537"],[1.27271879600753313e-01,1.19606227412923372e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["4f6c5271f537"],[1.27271879600753313e-01,1.19606227412923372e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1773_2": [ +[[3,0,0,5,["6e93eb6c919b"],[-2.20928876907898475e-01,-1.01581309756411844e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6e93eb6c919b"],[-2.20928876907898475e-01,-1.01581309756411844e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1774_2": [ +[[3,0,0,5,["fce868309dd6"],[2.49025908671077212e-01,4.97281776677438725e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["fce868309dd6"],[2.49025908671077212e-01,4.97281776677438725e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1775_2": [ +[[3,0,0,5,["ab106ee13e1e"],[-3.61401216328568364e-01,-1.04384584850932924e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["ab106ee13e1e"],[-3.61401216328568364e-01,-1.04384584850932924e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1776_2": [ +[[3,0,0,5,["85684fa4c7c9"],[-9.91748478375745340e-02,2.76094239508103523e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["85684fa4c7c9"],[-9.91748478375745340e-02,2.76094239508103523e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1777_2": [ +[[3,0,0,5,["9b8858bd48de"],[-1.33549280861099406e-01,3.14868452344010952e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9b8858bd48de"],[-1.33549280861099406e-01,3.14868452344010952e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1778_2": [ +[[3,0,0,5,["8de489ce66a8"],[-2.50315583353841187e-01,1.86284631811532875e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["8de489ce66a8"],[-2.50315583353841187e-01,1.86284631811532875e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1779_2": [ +[[3,0,0,5,["822f84f7997d"],[-2.45575970146951011e-01,1.47137266210948914e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["822f84f7997d"],[-2.45575970146951011e-01,1.47137266210948914e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1780_2": [ +[[3,0,0,5,["6268642ddcb0"],[2.15927508480723673e-01,1.43073811008404272e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["6268642ddcb0"],[2.15927508480723673e-01,1.43073811008404272e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1781_2": [ +[[3,0,0,5,["9d4f653bd99f"],[-2.41179762634612077e-01,2.47989828261715728e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["9d4f653bd99f"],[-2.41179762634612077e-01,2.47989828261715728e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1782_2": [ +[[3,0,0,5,["f265b838e4d1"],[-4.34716819980780822e-01,3.08464176936195433e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["f265b838e4d1"],[-4.34716819980780822e-01,3.08464176936195433e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1783_2": [ +[[3,0,0,5,["9f4d29953468"],[2.32342903891628150e-01,2.62168137075600050e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["9f4d29953468"],[2.32342903891628150e-01,2.62168137075600050e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1784_2": [ +[[3,0,0,5,["d35c912e3eae"],[-3.03649506822755988e-01,3.51888960040130927e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["d35c912e3eae"],[-3.03649506822755988e-01,3.51888960040130927e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1785_2": [ +[[3,0,0,5,["8435f191a200"],[2.22991514048940437e-01,1.86551066497510798e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8435f191a200"],[2.22991514048940437e-01,1.86551066497510798e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1786_2": [ +[[3,0,0,5,["6d53a31c1b31"],[-1.02814077673490933e-03,2.40409774010013011e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["6d53a31c1b31"],[-1.02814077673490933e-03,2.40409774010013011e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1787_2": [ +[[3,0,0,5,["3d78d0fb6db0"],[-4.57318111618674542e-02,1.27207521105612481e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["3d78d0fb6db0"],[-4.57318111618674542e-02,1.27207521105612481e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1788_2": [ +[[3,0,0,5,["5f4cd5be46f5"],[-1.92940733913043450e-02,2.08677159499210424e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["5f4cd5be46f5"],[-1.92940733913043450e-02,2.08677159499210424e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1789_2": [ +[[3,0,0,5,["b39eaef869c2"],[-3.82603310757076598e-01,9.81346985217100148e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["b39eaef869c2"],[-3.82603310757076598e-01,9.81346985217100148e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1790_2": [ +[[3,0,0,5,["98a380d2b562"],[-3.29181317829741082e-01,6.56096150287589219e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["98a380d2b562"],[-3.29181317829741082e-01,6.56096150287589219e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1791_2": [ +[[3,0,0,5,["4f517deb3e77"],[-1.62920014336364716e-01,6.22928446464959332e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["4f517deb3e77"],[-1.62920014336364716e-01,6.22928446464959332e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1792_2": [ +[[3,0,0,5,["d09e17eb358c"],[-5.97353066646026318e-02,4.54849101337126971e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["d09e17eb358c"],[-5.97353066646026318e-02,4.54849101337126971e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1793_2": [ +[[3,0,0,5,["9dd84fc14792"],[2.75033901602264874e-01,2.11750000266662908e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["9dd84fc14792"],[2.75033901602264874e-01,2.11750000266662908e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1794_2": [ +[[3,0,0,5,["79052fca7480"],[1.56650099721472619e-01,2.15137141308977681e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["79052fca7480"],[1.56650099721472619e-01,2.15137141308977681e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1795_2": [ +[[3,0,0,5,["5484407bb7a7"],[6.98493914069355099e-02,1.72228823294332256e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["5484407bb7a7"],[6.98493914069355099e-02,1.72228823294332256e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1796_2": [ +[[3,0,0,5,["55e7a87b526e"],[1.87172082112459337e-01,2.55427172523745166e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["55e7a87b526e"],[1.87172082112459337e-01,2.55427172523745166e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1797_2": [ +[[3,0,0,5,["e17a60c316b1"],[6.82116469822561244e-02,4.91117093298181595e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["e17a60c316b1"],[6.82116469822561244e-02,4.91117093298181595e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1798_2": [ +[[3,0,0,5,["107376e2d9cff"],[1.03538175078536895e-01,5.69483609562948523e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["107376e2d9cff"],[1.03538175078536895e-01,5.69483609562948523e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1799_2": [ +[[3,0,0,5,["aca421cd1472"],[3.11557190292578112e-01,2.16933346472879263e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["aca421cd1472"],[3.11557190292578112e-01,2.16933346472879263e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1800_2": [ +[[3,0,0,5,["871149877220"],[2.31164067651138339e-01,1.86499478976754035e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["871149877220"],[2.31164067651138339e-01,1.86499478976754035e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1801_2": [ +[[3,0,0,5,["6ef8048d10ee"],[-1.62229385922678243e-01,1.82287843797108551e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["6ef8048d10ee"],[-1.62229385922678243e-01,1.82287843797108551e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1802_2": [ +[[3,0,0,5,["10e329b7b9935"],[-5.93404520303396854e-01,-3.01702510221687203e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["10e329b7b9935"],[-5.93404520303396854e-01,-3.01702510221687203e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1803_2": [ +[[3,0,0,5,["a5328b8c05e8"],[-3.61813239377720364e-01,-3.25340466815340693e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["a5328b8c05e8"],[-3.61813239377720364e-01,-3.25340466815340693e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1804_2": [ +[[3,0,0,5,["7e8b9f86234a"],[-1.63801298186964206e-01,2.24959607179659044e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["7e8b9f86234a"],[-1.63801298186964206e-01,2.24959607179659044e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1805_2": [ +[[3,0,0,5,["41be540eee3d"],[-9.07609257392865687e-02,1.12531550050081600e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["41be540eee3d"],[-9.07609257392865687e-02,1.12531550050081600e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1806_2": [ +[[3,0,0,5,["d9dddc4b0c80"],[-1.17882069584105548e-01,4.64364835127482556e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["d9dddc4b0c80"],[-1.17882069584105548e-01,4.64364835127482556e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1807_2": [ +[[3,0,0,5,["47f3a0f7e3b3"],[1.57218731059350941e-01,1.78021614670196560e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["47f3a0f7e3b3"],[1.57218731059350941e-01,1.78021614670196560e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1808_2": [ +[[3,0,0,5,["2f07c681e1a8"],[-1.01154199482744039e-01,-2.15338580105658081e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["2f07c681e1a8"],[-1.01154199482744039e-01,-2.15338580105658081e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1809_2": [ +[[3,0,0,5,["61d45268193d"],[1.07012367007661952e-01,1.86624964551176331e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["61d45268193d"],[1.07012367007661952e-01,1.86624964551176331e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1810_2": [ +[[3,0,0,5,["b742eeb61bdf"],[-3.56582984484569987e-01,1.87761852932824935e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b742eeb61bdf"],[-3.56582984484569987e-01,1.87761852932824935e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1811_2": [ +[[3,0,0,5,["bf670c0e4476"],[1.94586095784564289e-01,3.73218288522566666e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["bf670c0e4476"],[1.94586095784564289e-01,3.73218288522566666e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1812_2": [ +[[3,0,0,5,["a45f82699a9e"],[-1.80138835228774052e-01,3.13374377585626585e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["a45f82699a9e"],[-1.80138835228774052e-01,3.13374377585626585e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1813_2": [ +[[3,0,0,5,["2c4f28825ab4"],[-6.79106755012558461e-02,6.98720734978209856e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["2c4f28825ab4"],[-6.79106755012558461e-02,6.98720734978209856e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1814_2": [ +[[3,0,0,5,["8eb010166b0c"],[-9.70749588703898048e-02,2.98379571541431354e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8eb010166b0c"],[-9.70749588703898048e-02,2.98379571541431354e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1815_2": [ +[[3,0,0,5,["368949ced488"],[3.28175835657708026e-02,-1.15348968025754048e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["368949ced488"],[3.28175835657708026e-02,-1.15348968025754048e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1816_2": [ +[[3,0,0,5,["93d24bb8f7cd"],[-2.86391556449730689e-01,-1.53771681466117943e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["93d24bb8f7cd"],[-2.86391556449730689e-01,-1.53771681466117943e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1817_2": [ +[[3,0,0,5,["526515a88837"],[7.92772718838726104e-02,1.62924166936621428e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["526515a88837"],[7.92772718838726104e-02,1.62924166936621428e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1818_2": [ +[[3,0,0,5,["10f4dd8d53973"],[-5.64606043143706549e-01,-1.92759830747061545e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["10f4dd8d53973"],[-5.64606043143706549e-01,-1.92759830747061545e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1819_2": [ +[[3,0,0,5,["1171bcfca58e1"],[-5.05053585822927698e-01,3.48755007843002951e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["1171bcfca58e1"],[-5.05053585822927698e-01,3.48755007843002951e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1820_2": [ +[[3,0,0,5,["1186de4c2e134"],[-6.12227929737005572e-01,-7.38881299941784447e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["1186de4c2e134"],[-6.12227929737005572e-01,-7.38881299941784447e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1821_2": [ +[[3,0,0,5,["5ebc7a18d2ce"],[-1.80789372637331192e-01,-1.03515318155493280e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["5ebc7a18d2ce"],[-1.80789372637331192e-01,-1.03515318155493280e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1822_2": [ +[[3,0,0,5,["7fc8f9bfdbb7"],[-2.74557906579469879e-01,5.98352747369840093e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["7fc8f9bfdbb7"],[-2.74557906579469879e-01,5.98352747369840093e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1823_2": [ +[[3,0,0,5,["1b09f2d09e69"],[-3.74168038456163948e-02,4.62100157816990043e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["1b09f2d09e69"],[-3.74168038456163948e-02,4.62100157816990043e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1824_2": [ +[[3,0,0,5,["487b95d67c96"],[1.02505894955688667e-01,1.22057841058062333e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["487b95d67c96"],[1.02505894955688667e-01,1.22057841058062333e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1825_2": [ +[[3,0,0,5,["ace40808dcaf"],[-3.61911503267108636e-01,1.16469261710975991e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["ace40808dcaf"],[-3.61911503267108636e-01,1.16469261710975991e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1826_2": [ +[[3,0,0,5,["c4857f1c09f6"],[-3.12709557534402105e-01,2.98279939868497102e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["c4857f1c09f6"],[-3.12709557534402105e-01,2.98279939868497102e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1827_2": [ +[[3,0,0,5,["cef2664ea848"],[1.53843552218199786e-01,4.28288298679512014e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["cef2664ea848"],[1.53843552218199786e-01,4.28288298679512014e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1828_2": [ +[[3,0,0,5,["a102071b114f"],[-3.17216118044781226e-01,1.57265803914818175e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["a102071b114f"],[-3.17216118044781226e-01,1.57265803914818175e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1829_2": [ +[[3,0,0,5,["f513a0aed6ec"],[-3.66809952730916433e-01,3.94835721298059217e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["f513a0aed6ec"],[-3.66809952730916433e-01,3.94835721298059217e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1830_2": [ +[[3,0,0,5,["8ac45ab2699f"],[-2.50520419372829539e-01,1.74233146042888115e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["8ac45ab2699f"],[-2.50520419372829539e-01,1.74233146042888115e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1831_2": [ +[[3,0,0,5,["65976c49adcd"],[-2.19236230096725992e-01,-4.29413195983038287e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["65976c49adcd"],[-2.19236230096725992e-01,-4.29413195983038287e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1832_2": [ +[[3,0,0,5,["e20e453fd198"],[-4.72120138843681925e-01,1.55604666698114402e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["e20e453fd198"],[-4.72120138843681925e-01,1.55604666698114402e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1833_2": [ +[[3,0,0,5,["52c93e60978e"],[-3.28845531587657544e-02,1.79053875954443276e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["52c93e60978e"],[-3.28845531587657544e-02,1.79053875954443276e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1834_2": [ +[[3,0,0,5,["8809fdcefb9b"],[-2.89803648596583197e-01,-7.42048234879921775e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8809fdcefb9b"],[-2.89803648596583197e-01,-7.42048234879921775e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1835_2": [ +[[3,0,0,5,["1d021460a9e6"],[5.97689071913428821e-02,-2.22886270628604860e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["1d021460a9e6"],[5.97689071913428821e-02,-2.22886270628604860e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1836_2": [ +[[3,0,0,5,["1e65af406de7"],[6.00338444460062348e-02,2.93952283847606528e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["1e65af406de7"],[6.00338444460062348e-02,2.93952283847606528e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1837_2": [ +[[3,0,0,5,["e56c78c9fcd1"],[8.56763054106396693e-02,4.97180032829083740e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["e56c78c9fcd1"],[8.56763054106396693e-02,4.97180032829083740e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1838_2": [ +[[3,0,0,5,["60201c8729e3"],[-7.07780221866819229e-03,2.11263539808715234e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["60201c8729e3"],[-7.07780221866819229e-03,2.11263539808715234e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1839_2": [ +[[3,0,0,5,["836c870e9134"],[-4.70539539280265956e-02,2.85148041786971618e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["836c870e9134"],[-4.70539539280265956e-02,2.85148041786971618e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1840_2": [ +[[3,0,0,5,["ca44876b3261"],[-5.30399003894713172e-03,4.44759731783501588e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["ca44876b3261"],[-5.30399003894713172e-03,4.44759731783501588e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1841_2": [ +[[3,0,0,5,["100c2480b3081"],[-2.85804834561308230e-01,4.86939427767176247e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["100c2480b3081"],[-2.85804834561308230e-01,4.86939427767176247e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1842_2": [ +[[3,0,0,5,["3cfbe50da40e"],[1.20234963580183901e-01,5.93948317747677659e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["3cfbe50da40e"],[1.20234963580183901e-01,5.93948317747677659e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1843_2": [ +[[3,0,0,5,["8d68aeae43ba"],[-3.26446076593637224e-02,3.09243237690198736e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8d68aeae43ba"],[-3.26446076593637224e-02,3.09243237690198736e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1844_2": [ +[[3,0,0,5,["c279514e1d4e"],[2.83104961492221585e-01,3.20528229208814019e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c279514e1d4e"],[2.83104961492221585e-01,3.20528229208814019e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1845_2": [ +[[3,0,0,5,["bfad7ddb0a9f"],[3.37969877382782169e-01,2.51876459626268812e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["bfad7ddb0a9f"],[3.37969877382782169e-01,2.51876459626268812e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1846_2": [ +[[3,0,0,5,["8ab01c5a2b78"],[-2.04380314254717976e-01,-2.26363117532239450e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["8ab01c5a2b78"],[-3.04581601568122640e-01,-1.55441892670252768e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1847_2": [ +[[3,0,0,5,["428d7559a929"],[-1.66621494331107844e-02,1.45399059444014822e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["428d7559a929"],[-1.66621494331107844e-02,1.45399059444014822e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1848_2": [ +[[3,0,0,5,["84f4b0193650"],[9.73293173255390665e-03,2.92210875813069759e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["84f4b0193650"],[9.73293173255390665e-03,2.92210875813069759e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1849_2": [ +[[3,0,0,5,["6dde36ab2821"],[-2.03773130935096053e-01,1.29800613423654704e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["6dde36ab2821"],[-2.03773130935096053e-01,1.29800613423654704e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1850_2": [ +[[3,0,0,5,["2b96a476f4ab"],[-1.02090621254058850e-02,9.53067816139337859e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["2b96a476f4ab"],[-1.02090621254058850e-02,9.53067816139337859e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1851_2": [ +[[3,0,0,5,["c329fcfc36bd"],[1.50220089667919637e-01,4.02021137014438534e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["c329fcfc36bd"],[1.50220089667919637e-01,4.02021137014438534e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1852_2": [ +[[3,0,0,5,["ae6d1198fc71"],[-2.72667445492117133e-01,2.69770386601581647e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["ae6d1198fc71"],[-3.83561469445584335e-01,-2.04852998699434075e-03]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1853_2": [ +[[3,0,0,5,["6210d8f96295"],[9.56896432450641821e-02,1.93256261747948105e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["6210d8f96295"],[9.56896432450641821e-02,1.93256261747948105e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1854_2": [ +[[3,0,0,5,["7f4081194f5d"],[-1.17483151297102795e-02,2.79583313161218316e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7f4081194f5d"],[-1.17483151297102795e-02,2.79583313161218316e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1855_2": [ +[[3,0,0,5,["c6dd0172ce70"],[-1.21558576331079055e-01,4.20070471096583908e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["c6dd0172ce70"],[-1.21558576331079055e-01,4.20070471096583908e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1856_2": [ +[[3,0,0,5,["3915029ab1a9"],[-1.44139275845915904e-02,1.24694484652427384e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["3915029ab1a9"],[-1.44139275845915904e-02,1.24694484652427384e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1857_2": [ +[[3,0,0,5,["ece2adf683d5"],[-2.68370392700134075e-01,4.46465552262248655e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["ece2adf683d5"],[-2.68370392700134075e-01,4.46465552262248655e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1858_2": [ +[[3,0,0,5,["2e3e7f015317"],[9.68423401897859359e-02,-3.10291017296132343e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["2e3e7f015317"],[4.65369872070355017e-02,-9.04187637013088436e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1859_2": [ +[[3,0,0,5,["a88405acee31"],[-2.75833033746913703e-01,-2.47463611918994075e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a88405acee31"],[-3.70026606722537288e-01,2.00602105528636526e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1860_2": [ +[[3,0,0,5,["631105277a73"],[-2.17509536339882847e-01,-1.21658560241895281e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["631105277a73"],[-2.17509536339882847e-01,-1.21658560241895281e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1861_2": [ +[[3,0,0,5,["6b320c4006c7"],[-2.35725228561293965e-01,2.81060758627264817e-04]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6b320c4006c7"],[-2.35725228561293965e-01,2.81060758627264817e-04]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1862_2": [ +[[3,0,0,5,["bf10fd250f01"],[-3.49934904709789607e-01,-2.32549914590060358e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["bf10fd250f01"],[-3.49934904709789607e-01,-2.32549914590060358e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1863_2": [ +[[3,0,0,5,["c685777b758b"],[5.99853300378142829e-02,4.32412242569680694e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["c685777b758b"],[3.48177662630555107e-01,2.63345595347651895e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1864_2": [ +[[3,0,0,5,["abe54e5cae94"],[-3.64655700274411188e-01,-9.95603450544427365e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["abe54e5cae94"],[-3.28250313587634346e-01,1.87450723337096253e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1865_2": [ +[[3,0,0,5,["86dbddd6e48c"],[-1.57411047129405401e-01,-2.51332975666411940e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["86dbddd6e48c"],[-1.57411047129405401e-01,-2.51332975666411940e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1866_2": [ +[[3,0,0,5,["2f6929d4b9b9"],[-1.04271066819821567e-02,-1.03734705817109280e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["2f6929d4b9b9"],[-1.04271066819821567e-02,-1.03734705817109280e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1867_2": [ +[[3,0,0,5,["b23d73a50e0d"],[1.40808639994072560e-01,3.65788011883796171e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["b23d73a50e0d"],[1.40808639994072560e-01,3.65788011883796171e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1868_2": [ +[[3,0,0,5,["73d0adda206c"],[1.30719246380106541e-01,2.18573763697628376e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["73d0adda206c"],[1.30719246380106541e-01,2.18573763697628376e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1869_2": [ +[[3,0,0,5,["aa817dba1766"],[-3.53858384221096334e-01,-1.23971577706887714e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["aa817dba1766"],[-3.53858384221096334e-01,-1.23971577706887714e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1870_2": [ +[[3,0,0,5,["ac7e2898989f"],[2.95091627397392697e-01,2.38330289876576673e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["ac7e2898989f"],[2.95091627397392697e-01,2.38330289876576673e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1871_2": [ +[[3,0,0,5,["bfb2ad2f75b3"],[-3.17545227722678070e-01,2.77250725806048148e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["bfb2ad2f75b3"],[-3.17545227722678070e-01,2.77250725806048148e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1872_2": [ +[[3,0,0,5,["40c516539ea7"],[4.85066908270056496e-02,-1.33916150446672128e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["40c516539ea7"],[4.85066908270056496e-02,-1.33916150446672128e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1873_2": [ +[[3,0,0,5,["7d84cbbf1d6e"],[-1.99206812500903163e-01,1.91057377847276277e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["7d84cbbf1d6e"],[-1.99206812500903163e-01,1.91057377847276277e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1874_2": [ +[[3,0,0,5,["a5d80cd869f5"],[-3.14976232602673434e-01,-1.83826529012299289e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["a5d80cd869f5"],[-3.14976232602673434e-01,-1.83826529012299289e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1875_2": [ +[[3,0,0,5,["5204fc9cb7a5"],[9.14576230997611872e-02,1.55454888060884922e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5204fc9cb7a5"],[9.14576230997611872e-02,1.55454888060884922e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1876_2": [ +[[3,0,0,5,["37201e327a6b"],[1.21155496134895679e-01,4.01998844563877800e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["37201e327a6b"],[1.21155496134895679e-01,4.01998844563877800e-03]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1877_2": [ +[[3,0,0,5,["7323fee97718"],[-2.34728699493217646e-01,9.49267897391930238e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["7323fee97718"],[-2.34728699493217646e-01,9.49267897391930238e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1878_2": [ +[[3,0,0,5,["5ad309bbe29f"],[-1.50318855321315697e-01,1.31507702220025391e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["5ad309bbe29f"],[-1.99281469955943036e-01,-1.33014939198606297e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1879_2": [ +[[3,0,0,5,["72dd8a40ef6e"],[-2.50009779992868997e-01,-3.60230410890862440e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["72dd8a40ef6e"],[-1.51311474162860005e-01,-2.02255747428969013e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"1880_2": [ +[[3,0,0,5,["5c18f9d1695c"],[-2.01687720404422233e-01,-1.83931951119240267e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5c18f9d1695c"],[-2.01687720404422233e-01,-1.83931951119240267e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1881_2": [ +[[3,0,0,5,["fbf957094127"],[-2.63417208751441312e-01,4.87477664228447516e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["fbf957094127"],[-2.63417208751441312e-01,4.87477664228447516e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1882_2": [ +[[3,0,0,5,["efd5e3136b5e"],[-4.29604854558574001e-01,3.05932137212118205e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["efd5e3136b5e"],[-4.29604854558574001e-01,3.05932137212118205e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"1883_2": [ +[[3,0,0,5,["7fae79df9f74"],[1.82310384106587065e-02,2.80182184674808765e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["7fae79df9f74"],[-1.85227431862969638e-01,2.11010013639468030e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"1884_2": [ +[[3,0,0,5,["e2d7973e132e"],[-4.46020615152431243e-01,2.23378923755654130e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["e2d7973e132e"],[-4.73336953285055317e-01,-1.57431449761503750e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1885_2": [ +[[3,0,0,5,["c096970e0e26"],[-3.54124120302135359e-01,2.32278840252192781e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c096970e0e26"],[-3.54124120302135359e-01,2.32278840252192781e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1886_2": [ +[[3,0,0,5,["1bd77d9bcc58"],[-6.10080127408138134e-02,5.14622642650672257e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["1bd77d9bcc58"],[-6.10080127408138134e-02,5.14622642650672257e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1887_2": [ +[[3,0,0,5,["ba899c1f740"],[2.53861335133590271e-02,-3.58146141853954436e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["ba899c1f740"],[2.53861335133590271e-02,-3.58146141853954436e-03]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1888_2": [ +[[3,0,0,5,["4590465df47c"],[-1.48362075818590122e-01,-3.72706539701370687e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["4590465df47c"],[-1.48362075818590122e-01,-3.72706539701370687e-02]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1889_2": [ +[[3,0,0,5,["305d23b95a07"],[-4.05584809692640103e-02,9.83158597582478588e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["305d23b95a07"],[-4.05584809692640103e-02,9.83158597582478588e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1890_2": [ +[[3,0,0,5,["58d2a82f3996"],[1.73995294282725643e-01,8.87521095130369975e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["58d2a82f3996"],[1.73995294282725643e-01,8.87521095130369975e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1891_2": [ +[[3,0,0,5,["b2e2667cd373"],[-8.18329770817406710e-02,3.84764904423733456e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["b2e2667cd373"],[-8.18329770817406710e-02,3.84764904423733456e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1892_2": [ +[[3,0,0,5,["4fd23162bdfa"],[-4.33882600397354767e-02,1.70081366626651354e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["4fd23162bdfa"],[-4.33882600397354767e-02,1.70081366626651354e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"1893_2": [ +[[3,0,0,5,["994c6845ae98"],[-2.85090169681928352e-01,1.79901783572415375e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["994c6845ae98"],[-2.85090169681928352e-01,1.79901783572415375e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1894_2": [ +[[3,0,0,5,["e865bd84e4ac"],[-4.17697167241647627e-01,2.94446018891075800e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["e865bd84e4ac"],[-4.17697167241647627e-01,2.94446018891075800e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1895_2": [ +[[3,0,0,5,["5b530ac86ee0"],[-1.28834264072234861e-01,1.54052553251731728e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5b530ac86ee0"],[-1.28834264072234861e-01,1.54052553251731728e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"1896_2": [ +[[3,0,0,5,["9662b4b44b2d"],[3.21209542468893439e-01,7.86627158990709785e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9662b4b44b2d"],[3.21209542468893439e-01,7.86627158990709785e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1897_2": [ +[[3,0,0,5,["85bbb77fbc2a"],[-1.91997811778444133e-01,2.22758607130284197e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["85bbb77fbc2a"],[-1.91997811778444133e-01,2.22758607130284197e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"1898_2": [ +[[3,0,0,5,["9f4d78faeaa2"],[-2.97570403005924633e-01,1.84848800048043771e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["9f4d78faeaa2"],[-2.97570403005924633e-01,1.84848800048043771e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1899_2": [ +[[3,0,0,5,["9c6d74a72807"],[2.52593791500708709e-01,2.33503777219356834e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9c6d74a72807"],[2.52593791500708709e-01,2.33503777219356834e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1900_2": [ +[[3,0,0,5,["e5311feccea0"],[-8.63631196229367459e-02,4.96543755919660823e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["e5311feccea0"],[-8.63631196229367459e-02,4.96543755919660823e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1901_2": [ +[[3,0,0,5,["73337a011797"],[-2.96334810159700757e-02,2.51590683759099709e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["73337a011797"],[-2.96334810159700757e-02,2.51590683759099709e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1902_2": [ +[[3,0,0,5,["29f53f18c84f"],[9.21030066732980157e-02,-5.49203894003852389e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["29f53f18c84f"],[9.21030066732980157e-02,-5.49203894003852389e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1903_2": [ +[[3,0,0,5,["8829f548d7b2"],[-2.96254946556661514e-01,4.34727797469325467e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8829f548d7b2"],[-2.96254946556661514e-01,4.34727797469325467e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1904_2": [ +[[3,0,0,5,["a6029cb21114"],[5.00835023079746755e-02,3.61608440251774577e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["a6029cb21114"],[5.00835023079746755e-02,3.61608440251774577e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1905_2": [ +[[3,0,0,5,["197c0c780bee"],[-4.43682736688230661e-02,3.42354636556241598e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["197c0c780bee"],[-4.43682736688230661e-02,3.42354636556241598e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1906_2": [ +[[3,0,0,5,["ccc40b3d3ae2"],[-2.97701911783427087e-01,3.37831209919101094e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["ccc40b3d3ae2"],[-2.97701911783427087e-01,3.37831209919101094e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1907_2": [ +[[3,0,0,5,["657c78b1ac72"],[8.90079517143521487e-02,2.04652581588972649e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["657c78b1ac72"],[8.90079517143521487e-02,2.04652581588972649e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1908_2": [ +[[3,0,0,5,["ade7698fc323"],[-2.69697544675971401e-01,2.71122488379200555e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["ade7698fc323"],[-2.69697544675971401e-01,2.71122488379200555e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1909_2": [ +[[3,0,0,5,["6e5661d6d8d8"],[-2.42149890079008612e-01,1.53286635706823271e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6e5661d6d8d8"],[-1.60386827381087366e-01,1.82064831295800728e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1910_2": [ +[[3,0,0,5,["34193d88a851"],[-1.00143398204079442e-01,5.56477607945602137e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["34193d88a851"],[-1.10160984976849702e-01,-3.14631669454889448e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1911_2": [ +[[3,0,0,5,["62d94af2b2f9"],[-2.15433859976162267e-01,-2.89537714447914152e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["62d94af2b2f9"],[-1.72808151415874856e-01,1.31861335156800014e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1912_2": [ +[[3,0,0,5,["686c8d3c41ea"],[1.71849072579985662e-01,1.52309661478291947e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["686c8d3c41ea"],[1.38164500903993348e-02,2.29214839033454743e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1913_2": [ +[[3,0,0,5,["2f173dbbbe4f"],[-6.25550364193001029e-02,-8.25241965929662535e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["2f173dbbbe4f"],[-6.25550364193001029e-02,-8.25241965929662535e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1914_2": [ +[[3,0,0,5,["50e7a1533e93"],[1.66835172563676692e-01,6.17943710113514066e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["50e7a1533e93"],[1.66835172563676692e-01,6.17943710113514066e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1915_2": [ +[[3,0,0,5,["56aecfd11030"],[-8.40988418749750999e-02,-1.71062744404223921e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["56aecfd11030"],[-8.40988418749750999e-02,-1.71062744404223921e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1916_2": [ +[[3,0,0,5,["17cf6385ba76"],[-8.07050131685849159e-03,5.17332670665796024e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["17cf6385ba76"],[-8.07050131685849159e-03,5.17332670665796024e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1917_2": [ +[[3,0,0,5,["2bb1c3bd8d01"],[-5.89256787055440490e-02,7.58952501473038610e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["2bb1c3bd8d01"],[-5.89256787055440490e-02,7.58952501473038610e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1918_2": [ +[[3,0,0,5,["9e76297ee33b"],[-3.31182206503539356e-01,1.08366004448155154e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["9e76297ee33b"],[-1.57554847431594064e-01,3.10807520622358280e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1919_2": [ +[[3,0,0,5,["85fc9de2e1cf"],[1.02468736030905658e-01,2.76247931626348087e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["85fc9de2e1cf"],[-1.22880447634680756e-01,2.67793123848816150e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1920_2": [ +[[3,0,0,5,["560be725922b"],[-1.85680660868693392e-01,3.64175303559955144e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["560be725922b"],[-1.85680660868693392e-01,3.64175303559955144e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1921_2": [ +[[3,0,0,5,["92c236eef1a8"],[-2.89145036620265028e-01,-1.43342304029007023e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["92c236eef1a8"],[-3.05814731350436686e-01,1.03098100930807332e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1922_2": [ +[[3,0,0,5,["3497835bc98d"],[6.17727791324889225e-02,9.77711997053305609e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["3497835bc98d"],[-2.54547272990616608e-02,1.12814629333705105e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1923_2": [ +[[3,0,0,5,["b64d4481bdd5"],[4.16766813012463960e-02,3.98713686871661421e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["b64d4481bdd5"],[4.16766813012463960e-02,3.98713686871661421e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1924_2": [ +[[3,0,0,5,["af7f7f105651"],[-2.96255886596792917e-01,2.47325656231053265e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["af7f7f105651"],[-2.96255886596792917e-01,2.47325656231053265e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1925_2": [ +[[3,0,0,5,["b75af0f92cb6"],[-3.67810815699852856e-01,1.65189006686990880e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["b75af0f92cb6"],[-3.67810815699852856e-01,1.65189006686990880e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1926_2": [ +[[3,0,0,5,["8e901c7c5872"],[2.48505780047386354e-01,1.91119415898836464e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8e901c7c5872"],[2.48505780047386354e-01,1.91119415898836464e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1927_2": [ +[[3,0,0,5,["649089dbb40c"],[-1.87503578947741389e-01,1.17247742942795372e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["649089dbb40c"],[-1.87503578947741389e-01,1.17247742942795372e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1928_2": [ +[[3,0,0,5,["50a1e4debc2f"],[-1.74855963142222709e-01,-2.94129517650525141e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["50a1e4debc2f"],[-1.74855963142222709e-01,-2.94129517650525141e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1929_2": [ +[[3,0,0,5,["d11638778180"],[-3.13988523218127868e-01,3.35879513752474712e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d11638778180"],[-3.13988523218127868e-01,3.35879513752474712e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1930_2": [ +[[3,0,0,5,["c3d629f16c00"],[-7.82130580240220641e-02,4.23487238132455701e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["c3d629f16c00"],[-7.82130580240220641e-02,4.23487238132455701e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1931_2": [ +[[3,0,0,5,["5cadaee62fb3"],[7.33315827462930614e-02,1.90151942980077426e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5cadaee62fb3"],[7.33315827462930614e-02,1.90151942980077426e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1932_2": [ +[[3,0,0,5,["7a46f253fb1d"],[2.21372416740620165e-01,1.52631016053384638e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7a46f253fb1d"],[2.21372416740620165e-01,1.52631016053384638e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1933_2": [ +[[3,0,0,5,["b7378680a492"],[-3.77077051211441971e-01,1.41915007525272835e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["b7378680a492"],[-3.77077051211441971e-01,1.41915007525272835e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1934_2": [ +[[3,0,0,5,["544a67041c29"],[5.17527115923981859e-02,1.77985669335628593e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["544a67041c29"],[5.17527115923981859e-02,1.77985669335628593e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1935_2": [ +[[3,0,0,5,["5128b681bbc3"],[9.98157797000033820e-02,1.47947852197863272e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5128b681bbc3"],[9.98157797000033820e-02,1.47947852197863272e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1936_2": [ +[[3,0,0,5,["c190ebf1ef1e"],[-4.25603621141435018e-01,6.70007415576529680e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["c190ebf1ef1e"],[-4.25603621141435018e-01,6.70007415576529680e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1937_2": [ +[[3,0,0,5,["258820188a5c"],[-3.54520712927876777e-02,7.45310307638739483e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["258820188a5c"],[-3.54520712927876777e-02,7.45310307638739483e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1938_2": [ +[[3,0,0,5,["46c4240963b5"],[1.55115835592992135e-02,-1.54841450277148740e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["46c4240963b5"],[1.55115835592992135e-02,-1.54841450277148740e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1939_2": [ +[[3,0,0,5,["6efddf2a554f"],[-1.23620976516605918e-01,2.10451015240378458e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["6efddf2a554f"],[-1.23620976516605918e-01,2.10451015240378458e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1940_2": [ +[[3,0,0,5,["6b410aca0f99"],[2.34143354368978540e-01,-2.83565060067622887e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["6b410aca0f99"],[2.34143354368978540e-01,-2.83565060067622887e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1941_2": [ +[[3,0,0,5,["65fe3a4c93aa"],[2.30397181912418980e-02,2.23098631045897250e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["65fe3a4c93aa"],[2.30397181912418980e-02,2.23098631045897250e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1942_2": [ +[[3,0,0,5,["13a5c85ab9ec3"],[-3.47663504630959797e-01,5.97502528416934298e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["13a5c85ab9ec3"],[-3.47663504630959797e-01,5.97502528416934298e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1943_2": [ +[[3,0,0,5,["979c0dc0b240"],[1.02731548650787499e-01,3.17170495571003075e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["979c0dc0b240"],[1.02731548650787499e-01,3.17170495571003075e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1944_2": [ +[[3,0,0,5,["47d6f53b3f75"],[8.87852574151142548e-02,1.30667326924045674e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["47d6f53b3f75"],[8.87852574151142548e-02,1.30667326924045674e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1945_2": [ +[[3,0,0,5,["62b7912716c4"],[-1.83301336968970607e-01,1.16296290302491806e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["62b7912716c4"],[-1.83301336968970607e-01,1.16296290302491806e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1946_2": [ +[[3,0,0,5,["4dca166e25e6"],[1.32174098878714535e-01,1.08589935654676020e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["4dca166e25e6"],[1.32174098878714535e-01,1.08589935654676020e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1947_2": [ +[[3,0,0,5,["10cf4297be8ef"],[-5.91370850252243674e-01,8.74923769779622357e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["10cf4297be8ef"],[-4.11975693103091234e-01,4.24348983715740480e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1948_2": [ +[[3,0,0,5,["be66ebfb8999"],[-1.06722824076965567e-01,4.04868720967795359e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["be66ebfb8999"],[-3.61749850698853570e-01,2.10820985474450801e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1949_2": [ +[[3,0,0,5,["7ce5b882a0d3"],[-1.14314548844641595e-01,2.49731852842651897e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7ce5b882a0d3"],[-1.14314548844641595e-01,2.49731852842651897e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1950_2": [ +[[3,0,0,5,["b3193f2aeb52"],[2.70654207094220556e-01,2.86108100722813674e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["b3193f2aeb52"],[2.70654207094220556e-01,2.86108100722813674e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1951_2": [ +[[3,0,0,5,["58b39ef98122"],[1.23019671356529109e-01,1.51371680140793247e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["58b39ef98122"],[1.94023985342698158e-01,2.00478976716137597e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1952_2": [ +[[3,0,0,5,["badc61bc9a15"],[3.26814873500831271e-01,-2.49078721329217018e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["badc61bc9a15"],[4.07218266146225194e-01,5.49677603438978729e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1953_2": [ +[[3,0,0,5,["95c7df9c09da"],[-3.52447085551422651e-02,3.27480238641564392e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["95c7df9c09da"],[-3.52447085551422651e-02,3.27480238641564392e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1954_2": [ +[[3,0,0,5,["68252f5764d6"],[-2.49388289209279690e-02,2.27655932075621820e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["68252f5764d6"],[-2.49388289209279690e-02,2.27655932075621820e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1955_2": [ +[[3,0,0,5,["a3f10f0cec50"],[2.58876405836164558e-01,2.50901427720605641e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a3f10f0cec50"],[2.58876405836164558e-01,2.50901427720605641e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1956_2": [ +[[3,0,0,5,["5c768e738682"],[1.53937795367973473e-01,1.32836918610525795e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5c768e738682"],[1.53937795367973473e-01,1.32836918610525795e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1957_2": [ +[[3,0,0,5,["e39dabdaff67"],[-2.05176726058143910e-01,4.56547325115276459e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["e39dabdaff67"],[-2.05176726058143910e-01,4.56547325115276459e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1958_2": [ +[[3,0,0,5,["586d53109aeb"],[-1.68073706228557468e-01,-9.77918789576267544e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["586d53109aeb"],[-1.68073706228557468e-01,-9.77918789576267544e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1959_2": [ +[[3,0,0,5,["5aa81f970ced"],[1.95293420011157348e-01,-4.00424686772534594e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["5aa81f970ced"],[1.95293420011157348e-01,-4.00424686772534594e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1960_2": [ +[[3,0,0,5,["9149f2d2ab79"],[-2.55406701086652421e-01,1.91946784130851505e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["9149f2d2ab79"],[-2.55406701086652421e-01,1.91946784130851505e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1961_2": [ +[[3,0,0,5,["75b02a01fc51"],[-2.33871579170750632e-01,-1.10819608380434823e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["75b02a01fc51"],[-2.33871579170750632e-01,-1.10819608380434823e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1962_2": [ +[[3,0,0,5,["dba4c5ab2fb3"],[-2.40214929115683762e-01,4.19031278767279636e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["dba4c5ab2fb3"],[-2.40214929115683762e-01,4.19031278767279636e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1963_2": [ +[[3,0,0,5,["d94e2a6003d9"],[1.44753826823178333e-01,4.55407526647441330e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d94e2a6003d9"],[1.44753826823178333e-01,4.55407526647441330e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1964_2": [ +[[3,0,0,5,["6ffa67b4a8b4"],[-2.25075834411659570e-01,-9.98812276332546045e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6ffa67b4a8b4"],[-2.25075834411659570e-01,-9.98812276332546045e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1965_2": [ +[[3,0,0,5,["5366d347fc2a"],[-2.68385688923622467e-04,1.83401996585375260e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["5366d347fc2a"],[-2.68385688923622467e-04,1.83401996585375260e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1966_2": [ +[[3,0,0,5,["b23c06a58ccc"],[3.08250286301226806e-02,3.90727730953477015e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["b23c06a58ccc"],[3.08250286301226806e-02,3.90727730953477015e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1967_2": [ +[[3,0,0,5,["82ba154b59bc"],[-6.26967640475461080e-02,2.80551170551773588e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["82ba154b59bc"],[-6.26967640475461080e-02,2.80551170551773588e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1968_2": [ +[[3,0,0,5,["6b1d9e335be7"],[-2.35470569540879582e-01,-6.11297976359896633e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6b1d9e335be7"],[-2.35470569540879582e-01,-6.11297976359896633e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1969_2": [ +[[3,0,0,5,["56c71a779e32"],[-5.87189096008165906e-02,1.81567510098068430e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["56c71a779e32"],[-5.87189096008165906e-02,1.81567510098068430e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1970_2": [ +[[3,0,0,5,["75ebd6b55d6b"],[1.17678472127386025e-01,2.31071985149551629e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["75ebd6b55d6b"],[1.17678472127386025e-01,2.31071985149551629e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1971_2": [ +[[3,0,0,5,["5f04fe366ea4"],[3.61190963520247044e-03,2.08918878924085283e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5f04fe366ea4"],[3.61190963520247044e-03,2.08918878924085283e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1972_2": [ +[[3,0,0,5,["b4d390e04938"],[-1.63059142848724581e-01,3.62671334809393231e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["b4d390e04938"],[-1.63059142848724581e-01,3.62671334809393231e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1973_2": [ +[[3,0,0,5,["5f95fa66df91"],[-2.06579488141502898e-01,3.88209761062402320e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["5f95fa66df91"],[-2.06579488141502898e-01,3.88209761062402320e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1974_2": [ +[[3,0,0,5,["7a955339e6cc"],[2.33659554596860664e-01,1.34416179355426185e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7a955339e6cc"],[2.33659554596860664e-01,1.34416179355426185e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1975_2": [ +[[3,0,0,5,["4c03f144d623"],[-5.05070470883511313e-02,1.59346732173696604e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["4c03f144d623"],[-5.05070470883511313e-02,1.59346732173696604e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1976_2": [ +[[3,0,0,5,["9e251a7e04ab"],[-1.61287518347159015e-01,3.08101295025478339e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["9e251a7e04ab"],[-1.61287518347159015e-01,3.08101295025478339e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1977_2": [ +[[3,0,0,5,["11d691489ac90"],[-2.48645861237176691e-02,6.27131536618019680e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["11d691489ac90"],[-2.48645861237176691e-02,6.27131536618019680e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1978_2": [ +[[3,0,0,5,["4d261790f032"],[-1.59707910611907727e-01,5.72292235903294824e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["4d261790f032"],[-1.59707910611907727e-01,5.72292235903294824e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1979_2": [ +[[3,0,0,5,["d70e603aaa10"],[-4.36996799945770009e-01,1.80778770643219594e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["d70e603aaa10"],[-4.36996799945770009e-01,1.80778770643219594e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1980_2": [ +[[3,0,0,5,["71e449859ec2"],[-2.33241494958228851e-01,-9.12354538863085623e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["71e449859ec2"],[-2.33241494958228851e-01,-9.12354538863085623e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1981_2": [ +[[3,0,0,5,["638145738c71"],[2.18333509351308241e-01,-1.44889266843760134e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["638145738c71"],[2.18333509351308241e-01,-1.44889266843760134e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1982_2": [ +[[3,0,0,5,["a19410118504"],[-3.54015233628781401e-01,3.03590975776331790e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["a19410118504"],[-3.54015233628781401e-01,3.03590975776331790e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1983_2": [ +[[3,0,0,5,["9465b7d0918b"],[-3.12557089531614207e-01,9.38019615824663144e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["9465b7d0918b"],[-3.12557089531614207e-01,9.38019615824663144e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1984_2": [ +[[3,0,0,5,["930ae5fdcc03"],[1.07517110786442202e-02,3.23171233149923243e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["930ae5fdcc03"],[1.07517110786442202e-02,3.23171233149923243e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1985_2": [ +[[3,0,0,5,["54b9f27c7ab2"],[1.32359970280261391e-01,-1.31126665471835879e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["54b9f27c7ab2"],[1.32359970280261391e-01,-1.31126665471835879e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1986_2": [ +[[3,0,0,5,["7205aa571896"],[-1.73264258687500727e-01,1.81242099233717840e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["7205aa571896"],[-1.73264258687500727e-01,1.81242099233717840e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1987_2": [ +[[3,0,0,5,["beb3454f3832"],[1.58267368499558136e-01,3.88341994420108305e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["beb3454f3832"],[1.58267368499558136e-01,3.88341994420108305e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1988_2": [ +[[3,0,0,5,["95f8aa1bfadc"],[-1.75180970678410264e-01,2.79416152154624953e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["95f8aa1bfadc"],[-1.75180970678410264e-01,2.79416152154624953e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1989_2": [ +[[3,0,0,5,["4632db56a017"],[-4.34033419480867669e-02,1.48141077630517648e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["4632db56a017"],[-4.34033419480867669e-02,1.48141077630517648e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1990_2": [ +[[3,0,0,5,["100184f90f31"],[2.32144459096685629e-02,2.64565331630137041e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["100184f90f31"],[2.32144459096685629e-02,2.64565331630137041e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1991_2": [ +[[3,0,0,5,["1128809d9c02"],[-3.69714720420983856e-02,-7.53404838782870123e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["1128809d9c02"],[-3.69714720420983856e-02,-7.53404838782870123e-03]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1992_2": [ +[[3,0,0,5,["5b8d9826117e"],[-2.01284630990275049e-01,-4.14972798968132883e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5b8d9826117e"],[-2.01284630990275049e-01,-4.14972798968132883e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1993_2": [ +[[3,0,0,5,["51e26f3430a3"],[-1.80018399675546836e-01,4.13746714964091655e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["51e26f3430a3"],[-1.80018399675546836e-01,4.13746714964091655e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1994_2": [ +[[3,0,0,5,["7b99f846bc66"],[-2.57264756225084046e-01,8.77007279368859638e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7b99f846bc66"],[-2.57264756225084046e-01,8.77007279368859638e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1995_2": [ +[[3,0,0,5,["8662d6992f1b"],[-2.94458649905465775e-01,2.50013796791649298e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8662d6992f1b"],[-2.94458649905465775e-01,2.50013796791649298e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1996_2": [ +[[3,0,0,5,["a2532c52808"],[4.57374623728391827e-03,2.18358970882566450e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a2532c52808"],[4.57374623728391827e-03,2.18358970882566450e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1997_2": [ +[[3,0,0,5,["635f0aef1056"],[-2.01562205131221833e-01,-8.44010806616167369e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["635f0aef1056"],[-2.01562205131221833e-01,-8.44010806616167369e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"1998_2": [ +[[3,0,0,5,["86b23bdc2f43"],[-2.94856202177291915e-01,-2.81840190393190596e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["86b23bdc2f42"],[-2.28423931018268023e-01,1.88565709050681457e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"1999_2": [ +[[3,0,0,5,["3ae1b65f0e31"],[9.18149728008649801e-02,9.12997907186404584e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3ae1b65f0e31"],[9.18149728008649801e-02,9.12997907186404584e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2000_2": [ +[[3,0,0,5,["6f084486c65f"],[-2.26760362834239559e-01,9.05268644568882064e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["6f084486c65f"],[-2.26760362834239559e-01,9.05268644568882064e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2001_2": [ +[[3,0,0,5,["d491f20bb21d"],[-4.67253989976390893e-01,-1.34173617381286719e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["d491f20bb21d"],[-4.67253989976390893e-01,-1.34173617381286719e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2002_2": [ +[[3,0,0,5,["2622c7e4f4c7"],[-3.00678277940450087e-02,7.82860260585165058e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["2622c7e4f4c7"],[-7.66177448268423461e-02,3.40954149694051578e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2003_2": [ +[[3,0,0,5,["606d5058e061"],[2.11464547951658866e-01,-1.56819999418024991e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["606d5058e061"],[2.11464547951658866e-01,-1.56819999418024991e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2004_2": [ +[[3,0,0,5,["4cffbfc8e92c"],[-1.60274106231847818e-01,-5.46110421480614922e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["4cffbfc8e92c"],[-1.60274106231847818e-01,-5.46110421480614922e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2005_2": [ +[[3,0,0,5,["14a46f9f40b8"],[-2.86516264163555467e-03,-4.53024463181721307e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["14a46f9f40b8"],[-2.86516264163555467e-03,-4.53024463181721307e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2006_2": [ +[[3,0,0,5,["bd741f099e09"],[-4.10130845164294544e-01,7.32050038898242605e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["bd741f099e09"],[-4.10130845164294544e-01,7.32050038898242883e-02]],[["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2007_2": [ +[[3,0,0,5,["9a43061b567c"],[2.16003417019883570e-01,2.61565165986422321e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["9a43061b567c"],[2.16003417019883570e-01,2.61565165986422321e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2008_2": [ +[[3,0,0,5,["3d042d3926fa"],[-9.86926620979655667e-02,9.09012474827203265e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["3d042d3926fa"],[-9.86926620979655667e-02,9.09012474827203265e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2009_2": [ +[[3,0,0,5,["384b8ef54141"],[2.79470399635226019e-02,-1.20598518370528957e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["384b8ef54141"],[2.79470399635226019e-02,-1.20598518370528957e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2010_2": [ +[[3,0,0,5,["439ac1484ff2"],[-7.21981323001045505e-02,1.29955311290694875e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["439ac1484ff2"],[-7.21981323001045505e-02,1.29955311290694875e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2011_2": [ +[[3,0,0,5,["12cc1b34e8ca"],[-3.87977589562155181e-02,-1.42608621418843992e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["12cc1b34e8ca"],[-3.87977589562155181e-02,-1.42608621418843992e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2012_2": [ +[[3,0,0,5,["e55303951f2f"],[-3.90333201387920603e-01,3.19292657661468804e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["e55303951f2f"],[-3.90333201387920603e-01,3.19292657661468804e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2013_2": [ +[[3,0,0,5,["fb96efcef60e"],[1.06700483189220777e-01,5.42864706612172898e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["fb96efcef60e"],[1.06700483189220777e-01,5.42864706612172898e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2014_2": [ +[[3,0,0,5,["8b6e2a4f0cf8"],[-2.78603874581356714e-01,1.28023073536393750e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8b6e2a4f0cf8"],[-2.78603874581356714e-01,1.28023073536393750e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2015_2": [ +[[3,0,0,5,["5ea20b3b24d2"],[-2.61682924240373427e-02,2.06448263555705974e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["5ea20b3b24d2"],[-2.61682924240373427e-02,2.06448263555705974e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2016_2": [ +[[3,0,0,5,["69410b95a7fc"],[2.26611074043348015e-01,4.71103244146318101e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["69410b95a7fc"],[2.26611074043348015e-01,4.71103244146318101e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2017_2": [ +[[3,0,0,5,["9109881a529a"],[-7.55384993989069442e-02,3.09865804997141669e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["9109881a529a"],[-7.55384993989069442e-02,3.09865804997141669e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2018_2": [ +[[3,0,0,5,["100551668bc2b"],[2.70689181970482085e-01,4.94432469788045892e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["100551668bc2b"],[2.70689181970482085e-01,4.94432469788045892e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2019_2": [ +[[3,0,0,5,["454e78598090"],[-1.40826724146589338e-01,5.82719753070023785e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["454e78598090"],[-5.83750227236241870e-02,1.40784040509057046e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2020_2": [ +[[3,0,0,5,["89595c0c5857"],[-3.02012146180760221e-01,-3.61484503812287833e-03]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["89595c0c5857"],[-3.02012146180760221e-01,-3.61484503812287833e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2021_2": [ +[[3,0,0,5,["8c7fa892b632"],[7.15504640866143626e-03,3.08876972661151883e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8c7fa892b632"],[7.15504640866143626e-03,3.08876972661151883e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2022_2": [ +[[3,0,0,5,["bc99c1ca5340"],[-3.38291316646423645e-01,-2.39928897520519380e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["bc99c1ca5340"],[-3.38291316646423645e-01,-2.39928897520519380e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2023_2": [ +[[3,0,0,5,["2e136d21d04a"],[2.04176493650130714e-02,9.92434138687253997e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["2e136d21d04a"],[-5.57382326127888114e-02,8.46131492565687232e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2024_2": [ +[[3,0,0,5,["37c8a5ef0d5e"],[5.10862918884234796e-03,1.22563412278741804e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["37c8a5ef0d5e"],[5.10862918884234796e-03,1.22563412278741804e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2025_2": [ +[[3,0,0,5,["84eefc5f1b3d"],[1.01637448264968552e-01,2.74085965310706781e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["84eefc5f1b3d"],[1.01637448264968552e-01,2.74085965310706781e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2026_2": [ +[[3,0,0,5,["cf64a7b72924"],[-8.44796518464886736e-02,4.48169759133470014e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["cf64a7b72924"],[-8.44796518464886736e-02,4.48169759133470014e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2027_2": [ +[[3,0,0,5,["a75ba175b789"],[-3.32179626096237468e-01,1.58424587263190364e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a75ba175b789"],[-3.32179626096237468e-01,1.58424587263190364e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2028_2": [ +[[3,0,0,5,["5e4666b979b9"],[-1.84866463042655776e-01,-9.38245228334282921e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["5e4666b979b9"],[-1.84866463042655776e-01,-9.38245228334282921e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2029_2": [ +[[3,0,0,5,["4b217f9a85db"],[1.45368822040770368e-01,7.85094548355444455e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["4b217f9a85db"],[1.45368822040770368e-01,7.85094548355444455e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2030_2": [ +[[3,0,0,5,["7f6dcfcf8700"],[-2.79996326399778783e-01,-1.11746887561181493e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["7f6dcfcf8700"],[-2.79996326399778783e-01,-1.11746887561181493e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2031_2": [ +[[3,0,0,5,["2cb52a71d274"],[-8.54600928195854148e-02,4.86010582724598489e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["2cb52a71d274"],[-2.60632732762617059e-02,9.47955490308595300e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"2032_2": [ +[[3,0,0,5,["8cd1692d2515"],[-2.77173125329515935e-01,1.38078467375274072e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8cd1692d2515"],[-9.83547758662677990e-02,2.93627217100071336e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2033_2": [ +[[3,0,0,5,["dd00f0f09403"],[-1.57416120627801803e-01,4.59791916878304785e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["dd00f0f09403"],[2.13811975995412490e-01,4.36431988723409048e-01]],[["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2034_2": [ +[[3,0,0,5,["cab6f748c449"],[-4.37754796416848890e-01,-8.41755374208056489e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["cab6f748c449"],[-3.69060478363564093e-01,2.50018291723016817e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2035_2": [ +[[3,0,0,5,["ef822421a008"],[-2.87341374284954987e-01,4.41397164777766693e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["ef822421a008"],[-2.87341374284954987e-01,4.41397164777766693e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2036_2": [ +[[3,0,0,5,["f7fa1e89ee2c"],[-2.41464700888084305e-01,4.88932303937392454e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["f7fa1e89ee2c"],[-2.41464700888084305e-01,4.88932303937392454e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2037_2": [ +[[3,0,0,5,["133ac53da9de8"],[-4.60896881861933227e-01,4.95313165135737477e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["133ac53da9de8"],[-4.60896881861933227e-01,4.95313165135737477e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2038_2": [ +[[3,0,0,5,["13f100cb1e94e"],[-3.56933115131136791e-01,6.04051482033069576e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["13f100cb1e94e"],[-3.56933115131136791e-01,6.04051482033069576e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2039_2": [ +[[3,0,0,5,["f5dc40fc674f"],[-1.84338164501624546e-02,5.40338317419039704e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["f5dc40fc674f"],[-1.84338164501624546e-02,5.40338317419039704e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2040_2": [ +[[3,0,0,5,["2af5c140e032"],[-7.77185948380185454e-02,-5.37066105121429549e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["2af5c140e032"],[-1.69790369465716712e-02,-9.29316539219336435e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"2041_2": [ +[[3,0,0,5,["51768f392b08"],[-1.79106160983561025e-01,3.44565411000452571e-03]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["51768f392b08"],[-1.29083626370572968e-01,-1.24210735596958124e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2042_2": [ +[[3,0,0,5,["54c708f40440"],[1.52596725045801351e-01,1.07095791299051751e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["54c708f40440"],[3.21740188026464757e-02,1.83630339330843939e-01]],[["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2043_2": [ +[[3,0,0,5,["e5088882978d"],[-4.24902361142785734e-01,2.70408817865756657e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["e5088882978d"],[-4.91659249711753787e-01,-1.09243432100724652e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2044_2": [ +[[3,0,0,5,["94806731aa5e"],[-1.03833695632324002e-01,3.09610986166007851e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["94806731aa5e"],[-1.03833695632324002e-01,3.09610986166007851e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2045_2": [ +[[3,0,0,5,["791ad18da4fd"],[2.42082295982722628e-02,2.65209616694274564e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["791ad18da4fd"],[2.42082295982722628e-02,2.65209616694274564e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2046_2": [ +[[3,0,0,5,["a0e210fc5e36"],[-7.12379632879057423e-02,3.46539196504944136e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a0e210fc5e36"],[-7.12379632879057423e-02,3.46539196504944136e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2047_2": [ +[[3,0,0,5,["aba61b320db6"],[2.65381163989212188e-01,2.68418986446776420e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["aba61b320db6"],[2.65381163989212188e-01,2.68418986446776420e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2048_2": [ +[[3,0,0,5,["3b53e78fb9cc"],[1.20321233227600327e-02,1.29907082878000735e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["3b53e78fb9cc"],[1.20321233227600327e-02,1.29907082878000735e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2049_2": [ +[[3,0,0,5,["1421c12f7e2d4"],[-4.34417585879381229e-01,5.59471173662223209e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["1421c12f7e2d4"],[-4.34417585879381229e-01,5.59471173662223209e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2050_2": [ +[[3,0,0,5,["61a1215ec9b4"],[1.74357234962745300e-01,-1.25264016210084789e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["61a1215ec9b4"],[3.47141478902808498e-02,-2.11864218491905953e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2051_2": [ +[[3,0,0,5,["36c892f34aae"],[2.73573735537746277e-02,1.17322789041058168e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["36c892f34aae"],[1.02304324073978575e-01,6.36151553633234473e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2052_2": [ +[[3,0,0,5,["34db8b50614a"],[1.11384264927431254e-01,-3.32285908260267770e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["34db8b50614a"],[1.02256730950022190e-01,5.52644071453089192e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2053_2": [ +[[3,0,0,5,["8dca2a2c4c5f"],[4.37940887437335280e-02,-3.08707964681256164e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["8dca2a2c4c5f"],[2.49256592358992862e-01,-1.87322398105834037e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2054_2": [ +[[3,0,0,5,["a65f1e3163b2"],[-3.65667216230340597e-01,-1.17178281896345438e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a65f1e3163b2"],[-2.66851524027750808e-01,2.50280012480411873e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2055_2": [ +[[3,0,0,5,["dc7fffb6352d"],[-4.49052665710698351e-01,-1.82933857890988483e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["dc7fffb6352d"],[-4.46881956457264806e-01,1.88174413610596530e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2056_2": [ +[[3,0,0,5,["6a54475fd81a"],[2.29845766025812220e-01,4.29291286536858246e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6a54475fd81a"],[2.29845766025812220e-01,4.29291286536858246e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2057_2": [ +[[3,0,0,5,["229160765ae1"],[-4.45037340556080074e-02,-6.16261650990916898e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["229160765ae1"],[-4.45037340556080074e-02,-6.16261650990916898e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2058_2": [ +[[3,0,0,5,["d9376f64be3e"],[-2.99333684098923358e-01,3.72239792018774773e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d9376f64be3e"],[-2.99333684098923358e-01,3.72239792018774773e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2059_2": [ +[[3,0,0,5,["8c32020f81d9"],[-2.90669884014838842e-01,-1.02739877392734880e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["8c32020f81d9"],[-2.90669884014838842e-01,-1.02739877392734880e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2060_2": [ +[[3,0,0,5,["be18762f770c"],[-1.80798493846280522e-01,3.76903731559444788e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["be18762f770c"],[-1.80798493846280522e-01,3.76903731559444788e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2061_2": [ +[[3,0,0,5,["a7994d9abdc7"],[-2.18436027189495785e-01,2.96846032359495582e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["a7994d9abdc7"],[-3.64359438530862167e-01,5.54442463685790032e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2062_2": [ +[[3,0,0,5,["d2758877a2ec"],[-4.59525821247543709e-01,5.49910086522777952e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["d2758877a2ec"],[-3.63818339456769224e-01,-2.86049309212141667e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2063_2": [ +[[3,0,0,5,["57c26d6f86e3"],[1.78119716142404488e-01,7.42740330382501979e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["57c26d6f86e3"],[1.78119716142404488e-01,7.42740330382501979e-02]],[["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2064_2": [ +[[3,0,0,5,["95edb7917d92"],[-1.59189150101980204e-01,2.88718819007713901e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["95edb7917d92"],[-1.59189150101980204e-01,2.88718819007713901e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2065_2": [ +[[3,0,0,5,["da77a86f67de"],[-3.10466856223721721e-01,3.66618098400506687e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["da77a86f67de"],[-3.10466856223721721e-01,3.66618098400506687e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2066_2": [ +[[3,0,0,5,["9c5aa06c7040"],[-3.42941520893042695e-01,-2.46475893239470889e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["9c5aa06c7040"],[-3.42941520893042695e-01,-2.46475893239470889e-02]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2067_2": [ +[[3,0,0,5,["b5d64e960b36"],[-2.66768230334918366e-01,2.97869104626146464e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["b5d64e960b36"],[-2.66768230334918366e-01,2.97869104626146464e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2068_2": [ +[[3,0,0,5,["835a1fb1767f"],[-3.16626824300727250e-02,2.87105562692058502e-01]],[["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["835a1fb1767f"],[-3.16626824300726972e-02,2.87105562692058502e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"2069_2": [ +[[3,0,0,5,["b9f747289724"],[-3.19395853978023891e-01,-2.55384016685293924e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["b9f747289724"],[-4.06430744235558805e-01,4.52632042258992173e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2070_2": [ +[[3,0,0,5,["f2850fcc600e"],[-4.90027006683815936e-01,-2.10450666083389692e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["f2850fcc600e"],[-4.95312512483462475e-01,1.97690326297881303e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2071_2": [ +[[3,0,0,5,["69e1b3eea575"],[2.31373285703632109e-01,2.60596529194233595e-02]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["69e1b3eea575"],[2.31373285703632109e-01,2.60596529194233595e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"2072_2": [ +[[3,0,0,5,["4e13283204d3"],[1.02577516619187667e-01,1.37676250553051105e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["4e13283204d3"],[1.02577516619187667e-01,1.37676250553051105e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"2073_2": [ +[[3,0,0,5,["815c9626c941"],[-1.04130318532783567e-01,2.64725643533520572e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["815c9626c941"],[-1.04130318532783567e-01,2.64725643533520572e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2074_2": [ +[[3,0,0,5,["5c7aa24b7ec8"],[-1.83643671554191673e-01,-8.73598209313256741e-02]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5c7aa24b7ec8"],[-1.83643671554191673e-01,-8.73598209313256741e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2075_2": [ +[[3,0,0,5,["541cc5003f6d"],[-8.00296720633481562e-02,-1.66755309085498626e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["541cc5003f6d"],[-8.00296720633481562e-02,-1.66755309085498626e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"2076_2": [ +[[3,0,0,5,["5f7a205a4825"],[-1.91278805004034630e-01,-8.65681971363308905e-02]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["5f7a205a4825"],[-1.91278805004034630e-01,-8.65681971363308905e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"2077_2": [ +[[3,0,0,5,["bcdbbac22de6"],[-3.59942939269768003e-01,2.07167457024915180e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["bcdbbac22de6"],[-3.59942939269768003e-01,2.07167457024915180e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"2078_2": [ +[[3,0,0,5,["9d1fffaf9302"],[-3.37978773589306170e-01,7.18015900984108196e-02]],[["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["9d1fffaf9302"],[-3.37978773589306170e-01,7.18015900984108196e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"2079_2": [ +[[3,0,0,5,["122ad2feb24f2"],[-6.25513249668086302e-01,-1.31588195193561797e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["122ad2feb24f2"],[-5.35351565707804400e-01,3.49257755416871096e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2080_2": [ +[[3,0,0,5,["3a6006ce39b6"],[-1.22966406271708767e-01,3.68464448521383103e-02]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3a6006ce39b6"],[-6.08960087153021523e-02,1.13004750750428429e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2081_2": [ +[[3,0,0,5,["67877b449e23"],[-1.31414667894502818e-01,1.85905097448277074e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["67877b449e23"],[-1.31414667894502818e-01,1.85905097448277074e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2082_2": [ +[[3,0,0,5,["bb1c40f6c519"],[-2.29593845911662042e-01,3.41446973950372878e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["bb1c40f6c519"],[-2.29593845911662042e-01,3.41446973950372878e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2083_2": [ +[[3,0,0,5,["139065507750"],[1.47325667547484468e-02,4.04206143210583124e-02]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["139065507750"],[1.47325667547484468e-02,4.04206143210583124e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]]]] +] +,"2084_2": [ +[[3,0,0,5,["68a55e9ec19b"],[-2.10763639219628984e-01,9.23764665625299575e-02]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["68a55e9ec19b"],[-2.10763639219628984e-01,9.23764665625299575e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"2085_2": [ +[[3,0,0,5,["540c53fd007a"],[-1.24057588171959082e-01,1.37002082699376082e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["540c53fd007a"],[-1.24057588171959082e-01,1.37002082699376082e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2086_2": [ +[[3,0,0,5,["a09d98ef63f4"],[-2.23336999651747248e-01,2.73622073314073733e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a09d98ef63f4"],[-2.23336999651747248e-01,2.73622073314073733e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2087_2": [ +[[3,0,0,5,["cc239486a6ce"],[-3.84704067623968304e-01,2.31343282507830983e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["cc239486a6ce"],[-3.84704067623968304e-01,2.31343282507830983e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2088_2": [ +[[3,0,0,5,["ad95d5b0f9e0"],[-3.32320362031509942e-01,1.87808093753827426e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["ad95d5b0f9e0"],[-3.32320362031509942e-01,1.87808093753827426e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2089_2": [ +[[3,0,0,5,["4620e9ac7271"],[-8.26208425407067293e-02,1.30214673018577975e-01]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["4620e9ac7271"],[-8.26208425407067293e-02,1.30214673018577975e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2090_2": [ +[[3,0,0,5,["4176060bb04b"],[-1.11998254928579677e-01,9.04327787076235901e-02]],[["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["4176060bb04b"],[-1.11998254928579677e-01,9.04327787076235901e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2091_2": [ +[[3,0,0,5,["96b9973c98e0"],[-9.01465760758370371e-02,3.18953246181657268e-01]],[["t", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["96b9973c98e0"],[-9.01465760758370371e-02,3.18953246181657379e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"2092_2": [ +[[3,0,0,5,["a95f4510a071"],[-2.68998776715534904e-01,-2.57606506919787481e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["a95f4510a071"],[-3.72366167067201825e-01,8.05555122567971904e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"2093_2": [ +[[3,0,0,5,["a3ea01bab3f3"],[1.52053489554068499e-01,3.26809704338164142e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["a3ea01bab3f3"],[1.52053489554068499e-01,3.26809704338164142e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +] +,"2094_2": [ +[[3,0,0,5,["d2feeeede7a4"],[-3.33755305117907214e-02,4.62782796572971056e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["d2feeeede7a4"],[-3.33755305117907214e-02,4.62782796572971056e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +] +,"2095_2": [ +[[3,0,0,5,["10c65b13d87b4"],[4.39571294946403124e-02,5.88572591993415717e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["10c65b13d87b4"],[4.39571294946403124e-02,5.88572591993415717e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +] +,"2096_2": [ +[[3,0,0,5,["67d3eb1c655e"],[1.10680737847127536e-01,1.99698991785164037e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["67d3eb1c655e"],[2.19471611565840552e-01,6.29454110089717606e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2097_2": [ +[[3,0,0,5,["a192c60a4438"],[-3.03463129193997205e-01,1.84799135126281794e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a192c60a4438"],[-3.03463129193997205e-01,1.84799135126281794e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"2098_2": [ +[[3,0,0,5,["69c155acbaa5"],[2.14289650167545476e-01,9.03507062178660475e-02]],[["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["69c155acbaa5"],[2.15413261823211050e-01,-8.76380677199177782e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2099_2": [ +[[3,0,0,5,["73235a9d6af5"],[-1.95007979087740535e-01,1.61486080524395281e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["73235a9d6af5"],[-1.95007979087740535e-01,1.61486080524395281e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2100_2": [ +[[3,0,0,5,["de74a1a57084"],[-1.49017948759844837e-01,4.65935224953722527e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["de74a1a57084"],[-1.49017948759844837e-01,4.65935224953722527e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2101_2": [ +[[3,0,0,5,["ec1877393ee5"],[2.17749135069806476e-01,4.71309686156643370e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["ec1877393ee5"],[2.17749135069806476e-01,4.71309686156643370e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2102_2": [ +[[3,0,0,5,["83ed775087e4"],[-3.00487817944432578e-02,2.88551493916053392e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["83ed775087e4"],[-3.00487817944432578e-02,2.88551493916053392e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2103_2": [ +[[3,0,0,5,["12a42c9b5d821"],[-3.92044471908283398e-01,5.25816661753199854e-01]],[["t", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["12a42c9b5d821"],[-3.92044471908283398e-01,5.25816661753199854e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2104_2": [ +[[3,0,0,5,["8df69acf1459"],[3.11102861074017079e-01,2.59178561345216607e-02]],[["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["8df69acf1459"],[3.11102861074017023e-01,2.59178561345216607e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"2105_2": [ +[[3,0,0,5,["1fc99bdef65e"],[-6.35484288465699848e-02,2.91173624998196379e-02]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["1fc99bdef65e"],[-6.55246094450497585e-02,-2.43464404972711379e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"2106_2": [ +[[3,0,0,5,["41c33858c98e"],[-1.09993089634593269e-01,-9.38859261487925284e-02]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["41c33858c98e"],[-1.13894845264900929e-02,-1.44164234602071284e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +] +,"2107_2": [ +[[3,0,0,5,["781037f29e38"],[2.63463856282703190e-01,-1.71601099035957813e-02]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["781037f29e38"],[2.63463856282703190e-01,-1.71601099035957813e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2108_2": [ +[[3,0,0,5,["63a9b93e34a5"],[1.60416645797669372e-01,-1.49325613256307221e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["63a9b93e34a5"],[1.60416645797669372e-01,-1.49325613256307221e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2109_2": [ +[[3,0,0,5,["579157d57125"],[1.31291708324634965e-01,1.40865869105031266e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["579157d57125"],[1.31291708324634965e-01,1.40865869105031266e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2110_2": [ +[[3,0,0,5,["7b58ba7e93f2"],[2.37387654191003994e-01,1.31222489588953439e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7b58ba7e93f2"],[2.37387654191003994e-01,1.31222489588953439e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2111_2": [ +[[3,0,0,5,["899bec3385f6"],[7.06488942777812046e-02,2.94242847863384505e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["899bec3385f6"],[7.06488942777812046e-02,2.94242847863384505e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2112_2": [ +[[3,0,0,5,["c4bda3a8d470"],[1.50836006226948982e-01,4.05491980804071006e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c4bda3a8d470"],[1.50836006226948982e-01,4.05491980804071006e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2113_2": [ +[[3,0,0,5,["b0adce7ec876"],[2.29907852269533447e-01,3.13194842632648462e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["b0adce7ec876"],[2.29907852269533447e-01,3.13194842632648462e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2114_2": [ +[[3,0,0,5,["8b3d6e6cd4e5"],[9.45419853430291141e-02,2.91230676952186629e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8b3d6e6cd4e5"],[9.45419853430291141e-02,2.91230676952186629e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2115_2": [ +[[3,0,0,5,["d49494c31879"],[-3.10913890417552907e-01,3.49084568161010855e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["d49494c31879"],[-4.66689385633571208e-01,2.69907450748854694e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2116_2": [ +[[3,0,0,5,["13ef5340f7ca"],[4.38353007311785003e-02,4.11245078164049205e-04]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["13ef5340f7ca"],[3.07054442188684773e-02,3.12870325858672568e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2117_2": [ +[[3,0,0,5,["73b5425a848c"],[-6.99767154439679406e-02,2.44633100725123287e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["73b5425a848c"],[-6.99767154439679406e-02,2.44633100725123287e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2118_2": [ +[[3,0,0,5,["9e7096af8429"],[2.13581620553681795e-01,2.75271452952147111e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["9e7096af8429"],[2.13581620553681795e-01,2.75271452952147111e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2119_2": [ +[[3,0,0,5,["9c3db256f54b"],[3.26639835146219526e-01,-1.06545689343150493e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["9c3db256f54b"],[3.26639835146219526e-01,-1.06545689343150493e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2120_2": [ +[[3,0,0,5,["890ba5964234"],[1.05471928113209920e-01,2.82307063051512097e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["890ba5964234"],[1.05471928113209920e-01,2.82307063051512097e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2121_2": [ +[[3,0,0,5,["78af8f8260d2"],[-1.18879730192868988e-01,2.37276021002579607e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["78af8f8260d2"],[-1.18879730192868988e-01,2.37276021002579607e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2122_2": [ +[[3,0,0,5,["8b22e16b3845"],[1.45756719917382649e-01,2.69014606692232427e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["8b22e16b3845"],[1.45756719917382649e-01,2.69014606692232427e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2123_2": [ +[[3,0,0,5,["e2b427fb8595"],[-2.45385303844140590e-02,4.97922500454588801e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["e2b427fb8595"],[-2.45385303844140590e-02,4.97922500454588801e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2124_2": [ +[[3,0,0,5,["ccf57710458f"],[-6.80737191384176432e-02,4.45538794862130438e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["ccf57710458f"],[-6.80737191384176432e-02,4.45538794862130438e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2125_2": [ +[[3,0,0,5,["3a5a68bd4093"],[2.34931962188691945e-03,1.28298449581191853e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3a5a68bd4093"],[2.34931962188691945e-03,1.28298449581191853e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2126_2": [ +[[3,0,0,5,["49b21017c063"],[-3.74325746890674868e-02,1.57675861969064801e-01]],[["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["49b21017c063"],[-3.74325746890674868e-02,1.57675861969064801e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2127_2": [ +[[3,0,0,5,["abd1403fe7e9"],[2.08827047784866549e-01,3.14876320335355953e-01]],[["tdg", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["abd1403fe7e9"],[2.08827047784866604e-01,3.14876320335355953e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2128_2": [ +[[3,0,0,5,["93248414e470"],[-3.20993192705308128e-01,-4.07550263460332018e-02]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["93248414e470"],[-1.98158307779927156e-01,-2.55794618773360072e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"2129_2": [ +[[3,0,0,5,["53110a8537e6"],[1.42612015338256182e-01,-1.14142145272273690e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["53110a8537e6"],[1.42612015338256182e-01,-1.14142145272273690e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2130_2": [ +[[3,0,0,5,["43d9c6d68ed7"],[-2.35881549033941373e-02,1.47328898492468274e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["43d9c6d68ed7"],[-2.35881549033941373e-02,1.47328898492468274e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2131_2": [ +[[3,0,0,5,["caabcb6534a9"],[3.94301238629062190e-01,2.07739670159136858e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["caabcb6534a9"],[3.94301238629062190e-01,2.07739670159136858e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +] +,"2132_2": [ +[[3,0,0,5,["58c272c5325a"],[-1.15850757100915830e-01,1.57084469487935835e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["58c272c5325a"],[-1.92994349545663968e-01,2.91566376423576107e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2133_2": [ +[[3,0,0,5,["1059430ea8ffb"],[-9.97034682354642210e-02,5.66511244846496509e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["1059430ea8ffb"],[-9.97034682354642210e-02,5.66511244846496509e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"2134_2": [ +[[3,0,0,5,["4f337b82af09"],[-7.63801044815783370e-02,1.56523322902537260e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["4f337b82af09"],[-1.64687592864896815e-01,5.66698132115746045e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +] +,"2135_2": [ +[[3,0,0,5,["ead4b808a5b7"],[-3.40451223746151055e-01,3.88278977203425746e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["ead4b808a5b7"],[-3.40451223746151055e-01,3.88278977203425746e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2136_2": [ +[[3,0,0,5,["9c837cbffd28"],[-3.60020793168238720e-02,3.42288946875530076e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9c837cbffd28"],[-3.60020793168238720e-02,3.42288946875530076e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2137_2": [ +[[3,0,0,5,["a8112c22e68a"],[2.10232301037092784e-01,3.03964276794222221e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a8112c22e68a"],[2.10232301037092784e-01,3.03964276794222221e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2138_2": [ +[[3,0,0,5,["fb3927606900"],[2.74741087965028677e-02,5.51762193658472011e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["fb3927606900"],[2.74741087965028677e-02,5.51762193658472011e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2139_2": [ +[[3,0,0,5,["b88f273441b5"],[-1.08620234317515080e-02,4.05704575441884097e-01]],[["tdg", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["b88f273441b5"],[-1.08620234317514802e-02,4.05704575441884208e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]]]] +] +,"2140_3": [ +[[1,0,0,3,["90150669058f"],[1.75375079708356807e-01,2.63877124678975283e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["90150669058f"],[1.75375079708356668e-01,2.63877124678975117e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["90150669058f"],[1.75375079708356668e-01,2.63877124678975117e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"2141_3": [ +[[1,0,0,3,["c0d01cdf17f9"],[-3.22589602981046553e-02,4.22771189170472572e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["c0d01cdf17f9"],[-3.22589602981047108e-02,4.22771189170472406e-01]],[["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["c0d01cdf17f9"],[-3.22589602981044887e-02,4.22771189170472628e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"2142_3": [ +[[1,0,0,3,["efb33e265fdf"],[4.34549587894314859e-01,2.98341491880472431e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["efb33e265fdf"],[4.34549587894314748e-01,2.98341491880472431e-01]],[["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[1,0,0,4,["efb33e265fdf"],[4.34549587894314859e-01,2.98341491880472542e-01]],[["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"2143_3": [ +[[1,0,0,4,["11a467734c250"],[5.48949386000248341e-01,2.89758731510870227e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["11a467734c250"],[5.93056197328315604e-01,-1.83275469409618696e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["11a467734c250"],[5.93056197328315715e-01,-1.83275469409618641e-01]],[["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +] +,"2144_3": [ +[[1,0,0,4,["164fc31d45d4d"],[2.92364596255271447e-01,7.28544554548003376e-01]],[["tdg", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["164fc31d45d4d"],[-3.08425806326456275e-01,7.21891783508395335e-01]],[["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[1,0,0,5,["164fc31d45d4d"],[-3.08425806326456164e-01,7.21891783508395224e-01]],[["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +] +,"2145_3": [ +[[2,0,0,2,["116baec0e00cd"],[5.53564910528592469e-01,2.63161770391809990e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,3,["116baec0e00cd"],[5.53564910528592469e-01,2.63161770391809990e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,3,["116baec0e00cd"],[5.53564910528592469e-01,2.63161770391809990e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2146_3": [ +[[2,0,0,2,["16f654f5a8afa"],[7.00971812297168317e-01,-4.01696357961644268e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,2,["16f654f5a8afa"],[7.00971812297168317e-01,-4.01696357961644268e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,3,["16f654f5a8afa"],[7.00971812297168317e-01,-4.01696357961644268e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"2147_3": [ +[[2,0,0,2,["6610fb9483e4"],[2.01405676486090923e-01,-9.90549029936722142e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,2,["6610fb9483e4"],[2.01405676486090923e-01,-9.90549029936722142e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,3,["6610fb9483e4"],[2.01405676486090923e-01,-9.90549029936722142e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"2148_3": [ +[[2,0,0,3,["172e72b2c8552"],[7.15898697012999019e-01,-3.90809544711888335e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,3,["172e72b2c8552"],[7.15898697012999019e-01,-3.90809544711888335e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["172e72b2c8552"],[7.15898697012999019e-01,-3.90809544711888335e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"2149_3": [ +[[2,0,0,3,["12888de0f90e0"],[6.28499465479147590e-01,-1.73796752798335452e-01]],[["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,3,["12888de0f90e0"],[3.21523371560520577e-01,-5.67309096464330809e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["12888de0f90e0"],[6.28499465479147590e-01,-1.73796752798335452e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"2150_3": [ +[[2,0,0,3,["542ea0c80057"],[1.58938931320808913e-01,-9.49066369674053389e-02]],[["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,3,["542ea0c80057"],[1.79495922710749156e-01,4.52776695522247308e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,4,["542ea0c80057"],[1.58938931320808913e-01,-9.49066369674053389e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"2151_3": [ +[[2,0,0,4,["1091e3968aefd"],[5.82952070123474275e-01,7.53668878597402864e-03]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["1091e3968aefd"],[5.82952070123474275e-01,7.53668878597402864e-03]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["1091e3968aefd"],[5.82952070123474275e-01,7.53668878597402864e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2152_3": [ +[[2,0,0,4,["120a142eb47f9"],[4.06767680037682156e-01,-4.87225947290475636e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["120a142eb47f9"],[4.06767680037682156e-01,-4.87225947290475636e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["120a142eb47f9"],[4.06767680037682156e-01,-4.87225947290475636e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +] +,"2153_3": [ +[[2,0,0,4,["9fe89c7af887"],[-7.02935958266800720e-02,3.44545321210146915e-01]],[["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["9fe89c7af887"],[-7.02935958266800720e-02,3.44545321210146971e-01]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["9fe89c7af887"],[-7.02935958266800720e-02,3.44545321210146971e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2154_3": [ +[[2,0,0,4,["73797ac6eb51"],[2.45573124258450237e-01,-6.46133336234723799e-02]],[["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["73797ac6eb51"],[2.45573124258450237e-01,-6.46133336234723521e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["73797ac6eb51"],[2.45573124258450237e-01,-6.46133336234723799e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2155_3": [ +[[2,0,0,4,["15619b2ecc868"],[7.52214019887406438e-01,-1.04573198734851658e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["15619b2ecc868"],[7.52214019887406327e-01,-1.04573198734851935e-02]],[["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]]]] +,[[2,0,0,5,["15619b2ecc868"],[7.52214019887406438e-01,-1.04573198734851658e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"2156_3": [ +[[2,0,0,4,["7e15051b8f61"],[2.46175028079323926e-01,-1.27552230195978666e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["7e15051b8f61"],[2.46175028079323926e-01,-1.27552230195978666e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["7e15051b8f61"],[2.46175028079323926e-01,-1.27552230195978666e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"2157_3": [ +[[2,0,0,4,["107524dbfe15e"],[4.38165225781740775e-01,3.78563406663220081e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["107524dbfe15e"],[4.38165225781740775e-01,3.78563406663220081e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["107524dbfe15e"],[5.77514354391047147e-01,-4.21448504697599646e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"2158_3": [ +[[2,0,0,4,["ffcd8726f324"],[5.53563530592343533e-01,9.99605911929838109e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,4,["ffcd8726f324"],[5.53563530592343533e-01,9.99605911929838109e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["ffcd8726f324"],[3.20745714415437866e-01,4.62111338183388121e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"2159_3": [ +[[2,0,0,4,["ade23987a5cb"],[-2.76941450238019082e-02,3.81370061000157246e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["ade23987a5cb"],[-2.76941450238019360e-02,3.81370061000157246e-01]],[["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["ade23987a5cb"],[-2.76941450238019082e-02,3.81370061000157246e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"2160_3": [ +[[2,0,0,4,["157fb37aa4e29"],[7.55983012497427054e-01,2.57937157278054080e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["157fb37aa4e29"],[5.52799625901894465e-01,-5.16321803295635817e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["157fb37aa4e29"],[5.52799625901894465e-01,-5.16321803295635817e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"2161_3": [ +[[2,0,0,4,["15c274c1bad08"],[3.92971815193406293e-01,-6.57048643934961318e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[2,0,0,4,["15c274c1bad08"],[7.42476587034280766e-01,-1.86730516357392046e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[2,0,0,5,["15c274c1bad08"],[7.42476587034280766e-01,-1.86730516357392046e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"2162_3": [ +[[2,0,0,5,["f11ce5514b87"],[7.83737180063418248e-02,5.24388398076041984e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["f11ce5514b87"],[4.26217179724206585e-01,3.15380004786033508e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["f11ce5514b87"],[4.26217179724206585e-01,3.15380004786033508e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2163_3": [ +[[2,0,0,5,["10c3a260bbbf8"],[5.89462400448581336e-01,2.10385514074266713e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["10c3a260bbbf8"],[4.01936358245158831e-01,4.31689362978225244e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["10c3a260bbbf8"],[4.01936358245158831e-01,4.31689362978225244e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2164_3": [ +[[2,0,0,5,["12e9c72f0738c"],[5.62833256409412730e-01,3.55022501953745850e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["12e9c72f0738c"],[6.49022030889710666e-01,-1.46944393679094565e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["12e9c72f0738c"],[6.49022030889710666e-01,-1.46944393679094565e-01]],[["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2165_3": [ +[[2,0,0,5,["aa150125b0e2"],[3.66652837886021099e-01,-7.38407295433594624e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[2,0,0,5,["aa150125b0e2"],[3.11475988598368669e-01,2.07049427422626109e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[2,0,0,5,["aa150125b0e2"],[3.11475988598368669e-01,2.07049427422626109e-01]],[["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2166_3": [ +[[3,0,0,2,["3df61e38484e"],[1.19341647638707651e-01,-6.57485764724708710e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,3,["3df61e38484e"],[1.19341647638707651e-01,-6.57485764724708710e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,3,["3df61e38484e"],[1.19341647638707651e-01,-6.57485764724708710e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2167_3": [ +[[3,0,0,2,["941bd4071928"],[1.52654753224752304e-01,2.87703707950240306e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,3,["941bd4071928"],[1.52654753224752304e-01,2.87703707950240306e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,3,["941bd4071928"],[1.52654753224752304e-01,2.87703707950240306e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2168_3": [ +[[3,0,0,3,["b311af6db520"],[-3.54702201881662793e-01,1.71016768674013137e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["b311af6db520"],[-3.54702201881662793e-01,1.71016768674013137e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["b311af6db520"],[-3.54702201881662793e-01,1.71016768674013137e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2169_3": [ +[[3,0,0,3,["1f49c3b64e3e"],[6.53029687173826978e-02,2.16661875351069483e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["1f49c3b64e3e"],[6.53029687173826978e-02,2.16661875351069483e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["1f49c3b64e3e"],[6.53029687173826978e-02,2.16661875351069483e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2170_3": [ +[[3,0,0,3,["3cfa838ec88d"],[-1.95689638168081090e-02,1.32657706034419898e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["3cfa838ec88d"],[-1.95689638168081090e-02,1.32657706034419898e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["3cfa838ec88d"],[-1.95689638168081090e-02,1.32657706034419898e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2171_3": [ +[[3,0,0,3,["a61a40f8e275"],[-3.56783185289569982e-01,7.82502051521879044e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["a61a40f8e275"],[-3.56783185289569982e-01,7.82502051521879044e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["a61a40f8e275"],[-3.56783185289569982e-01,7.82502051521879044e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2172_3": [ +[[3,0,0,3,["84cb02bc19bf"],[-2.59631888310435210e-01,1.33656256997513406e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["84cb02bc19bf"],[-2.59631888310435210e-01,1.33656256997513406e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["84cb02bc19bf"],[-2.59631888310435210e-01,1.33656256997513406e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"2173_3": [ +[[3,0,0,3,["125e76b203788"],[9.19814267267710095e-03,6.46236226179298878e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["125e76b203788"],[9.19814267267710095e-03,6.46236226179298878e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["125e76b203788"],[9.19814267267710095e-03,6.46236226179298878e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2174_3": [ +[[3,0,0,3,["40d857787c3b"],[-1.01494196837545611e-01,1.00162389313876388e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,3,["40d857787c3b"],[-1.01494196837545611e-01,1.00162389313876388e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["40d857787c3b"],[-1.01494196837545611e-01,1.00162389313876388e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2175_3": [ +[[3,0,0,3,["8ffcb4472807"],[1.07694574738445542e-01,2.97753409576319017e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["8ffcb4472807"],[1.07694574738445542e-01,2.97753409576319017e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["8ffcb4472807"],[1.07694574738445542e-01,2.97753409576319017e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2176_3": [ +[[3,0,0,3,["f90537bdad4b"],[-3.82734891035772073e-01,3.91639537306706531e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["f90537bdad4b"],[-3.82734891035772073e-01,3.91639537306706531e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["f90537bdad4b"],[-3.82734891035772073e-01,3.91639537306706531e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2177_3": [ +[[3,0,0,3,["7448b4489ba8"],[-2.49693241970056268e-01,-5.51499238323263086e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["7448b4489ba8"],[-2.49693241970056268e-01,-5.51499238323263086e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["7448b4489ba8"],[-2.49693241970056268e-01,-5.51499238323263086e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2178_3": [ +[[3,0,0,3,["bf3faf741778"],[-4.00760108581424135e-01,-1.27524371266819564e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["bf3faf741778"],[-4.00760108581424135e-01,-1.27524371266819564e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["bf3faf741778"],[-4.00760108581424135e-01,-1.27524371266819564e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2179_3": [ +[[3,0,0,3,["4ffc58370d68"],[1.53414809465150626e-01,8.60311013885162040e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["4ffc58370d68"],[1.53414809465150626e-01,8.60311013885162040e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["4ffc58370d68"],[1.53414809465150626e-01,8.60311013885162040e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2180_3": [ +[[3,0,0,3,["10865a9ffe0fd"],[-5.35538955567599784e-01,2.26366795126946102e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["10865a9ffe0fd"],[-5.35538955567599784e-01,2.26366795126946102e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["10865a9ffe0fd"],[-5.35538955567599784e-01,2.26366795126946102e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2181_3": [ +[[3,0,0,3,["49c4b8e56fea"],[-1.04972429103022305e-01,1.23675544285638178e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,3,["49c4b8e56fea"],[-1.04972429103022305e-01,1.23675544285638178e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["49c4b8e56fea"],[-1.04972429103022305e-01,1.23675544285638178e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2182_3": [ +[[3,0,0,3,["6af04b2e6fa1"],[-2.27711365446877423e-01,5.87199173845605327e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["6af04b2e6fa1"],[-2.27711365446877423e-01,5.87199173845605327e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["6af04b2e6fa1"],[-2.27711365446877423e-01,5.87199173845605327e-02]],[["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2183_3": [ +[[3,0,0,3,["d3ac4eafd645"],[-3.43066272488057489e-01,3.14597508284921612e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["d3ac4eafd645"],[-3.43066272488057489e-01,3.14597508284921612e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["d3ac4eafd645"],[-3.43066272488057489e-01,3.14597508284921612e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2184_3": [ +[[3,0,0,4,["10464c887fdd4"],[-1.76577220092480086e-01,5.44706088546323519e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["10464c887fdd4"],[-1.76577220092480058e-01,5.44706088546323630e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["10464c887fdd4"],[-1.76577220092480058e-01,5.44706088546323519e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2185_3": [ +[[3,0,0,4,["9965075aa3fa"],[-3.10122704843142027e-01,-1.32693643387794186e-01]],[["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9965075aa3fa"],[-3.10122704843142027e-01,-1.32693643387794186e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["9965075aa3fa"],[-3.10122704843142027e-01,-1.32693643387794186e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2186_3": [ +[[3,0,0,4,["5d8c931eee31"],[-2.04703132522402326e-01,-2.03956894438490355e-02]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["5d8c931eee31"],[-2.04703132522402326e-01,-2.03956894438490355e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["5d8c931eee31"],[-2.04703132522402326e-01,-2.03956894438490355e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"2187_3": [ +[[3,0,0,4,["8ce697e4f2d4"],[1.51626226081338189e-01,2.70208836115182982e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["8ce697e4f2d4"],[1.51626226081338189e-01,2.70208836115182982e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["8ce697e4f2d4"],[1.51626226081338189e-01,2.70208836115182982e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2188_3": [ +[[3,0,0,4,["e1c5607f0fba"],[3.00360259624982306e-01,3.95312310344806739e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["e1c5607f0fba"],[3.00360259624982306e-01,3.95312310344806739e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["e1c5607f0fba"],[3.00360259624982306e-01,3.95312310344806739e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"2189_3": [ +[[3,0,0,4,["e02ae4b9d335"],[-4.62553797770327291e-01,1.70421104057017297e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["e02ae4b9d335"],[-4.62553797770327291e-01,1.70421104057017297e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["e02ae4b9d335"],[-4.62553797770327291e-01,1.70421104057017297e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"2190_3": [ +[[3,0,0,4,["4528b2991ffc"],[1.49938977855357314e-01,2.54420299424555491e-02]],[["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["4528b2991ffc"],[1.49938977855357314e-01,2.54420299424555491e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["4528b2991ffc"],[1.49938977855357314e-01,2.54420299424555491e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2191_3": [ +[[3,0,0,4,["8c0c29786948"],[-1.15868676287864319e-01,2.85339395150698782e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["8c0c29786948"],[-1.15868676287864319e-01,2.85339395150698782e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["8c0c29786948"],[-1.15868676287864319e-01,2.85339395150698782e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2192_3": [ +[[3,0,0,4,["57c467ea7064"],[-1.87636678840971127e-01,4.51918326227645217e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["57c467ea7064"],[-1.87636678840971127e-01,4.51918326227645217e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["57c467ea7064"],[-1.87636678840971127e-01,4.51918326227645217e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2193_3": [ +[[3,0,0,4,["63ac02ee8681"],[-2.18816178397749639e-01,-1.26385755580240705e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["63ac02ee8681"],[-2.18816178397749639e-01,-1.26385755580240705e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["63ac02ee8681"],[-2.18816178397749639e-01,-1.26385755580240705e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2194_3": [ +[[3,0,0,4,["3b76b5b50a5c"],[1.21376452264910034e-01,4.86464672751669436e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["3b76b5b50a5c"],[1.21376452264910034e-01,4.86464672751669436e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["3b76b5b50a5c"],[1.21376452264910034e-01,4.86464672751669436e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2195_3": [ +[[3,0,0,4,["7419dc37dc76"],[-2.04330946223280352e-01,1.53073400042774588e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["7419dc37dc76"],[-2.04330946223280352e-01,1.53073400042774588e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["7419dc37dc76"],[-2.04330946223280352e-01,1.53073400042774588e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2196_3": [ +[[3,0,0,4,["d12642f5a3a9"],[-1.90865726138595482e-01,4.18450526369378517e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["d12642f5a3a9"],[-1.90865726138595482e-01,4.18450526369378517e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["d12642f5a3a9"],[-1.90865726138595482e-01,4.18450526369378517e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2197_3": [ +[[3,0,0,4,["901fb9b92dee"],[3.43421226084870135e-02,3.15065751800554961e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["901fb9b92dee"],[3.43421226084870135e-02,3.15065751800554961e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["901fb9b92dee"],[3.43421226084870135e-02,3.15065751800554961e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2198_3": [ +[[3,0,0,4,["e52545c9aa36"],[-4.72216632894005284e-01,1.75849734374648820e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["e52545c9aa36"],[-4.72216632894005284e-01,1.75849734374648820e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["e52545c9aa36"],[-4.72216632894005284e-01,1.75849734374648820e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2199_3": [ +[[3,0,0,4,["15547aa6d31d"],[-3.92261889063933444e-02,2.57176979227353997e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["15547aa6d31d"],[-3.92261889063933444e-02,2.57176979227353997e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["15547aa6d31d"],[-3.92261889063933444e-02,2.57176979227353997e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2200_3": [ +[[3,0,0,4,["8df88c1a507a"],[-1.06040961403818274e-01,2.93636609719147290e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["8df88c1a507a"],[-1.06040961403818274e-01,2.93636609719147290e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["8df88c1a507a"],[-1.06040961403818274e-01,2.93636609719147290e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2201_3": [ +[[3,0,0,4,["10bbc95f6a629"],[8.43394606653180834e-02,5.82687043582145625e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["10bbc95f6a629"],[8.43394606653180834e-02,5.82687043582145625e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["10bbc95f6a629"],[8.43394606653180834e-02,5.82687043582145625e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"2202_3": [ +[[3,0,0,4,["86ad478fe112"],[-2.70620121962970361e-01,1.20308185510091342e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["86ad478fe112"],[-2.70620121962970361e-01,1.20308185510091342e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["86ad478fe112"],[-2.70620121962970361e-01,1.20308185510091342e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +] +,"2203_3": [ +[[3,0,0,4,["4e46ea68e368"],[1.62456223043247056e-01,-5.69011126571332404e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["4e46ea68e368"],[1.62456223043247056e-01,-5.69011126571332404e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["4e46ea68e368"],[1.62456223043247056e-01,-5.69011126571332404e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"2204_3": [ +[[3,0,0,4,["5719130e06ad"],[-1.28753331630252738e-01,1.41797312811712317e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["5719130e06ad"],[-1.28753331630252738e-01,1.41797312811712317e-01]],[["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["5719130e06ad"],[-1.28753331630252738e-01,1.41797312811712317e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2205_3": [ +[[3,0,0,4,["21408db5b634"],[-4.79125880128762338e-02,-5.52381343350697232e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["21408db5b634"],[-4.79125880128762338e-02,-5.52381343350697232e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["21408db5b634"],[-4.79125880128762338e-02,-5.52381343350697232e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"2206_3": [ +[[3,0,0,4,["d2e7dd8d5e3b"],[-4.63433339847974635e-01,-1.80981492778896635e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["d2e7dd8d5e3b"],[-3.40494181315754929e-01,3.14899533153110534e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d2e7dd8d5e3b"],[-3.40494181315754929e-01,3.14899533153110534e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2207_3": [ +[[3,0,0,4,["7a9900b75748"],[-1.44093235992225732e-01,2.27856684599232029e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["7a9900b75748"],[-2.63008311112017612e-01,5.92297025255850290e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7a9900b75748"],[-2.63008311112017612e-01,5.92297025255850290e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2208_3": [ +[[3,0,0,4,["355c97312cfc"],[-1.17032076289983189e-01,-8.54451953439533396e-03]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["355c97312cfc"],[-8.87960624657403164e-02,7.67122870562366443e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["355c97312cfc"],[-8.87960624657403164e-02,7.67122870562366443e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2209_3": [ +[[3,0,0,4,["64ae983fa129"],[1.49192915146862864e-01,1.63585929507432365e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["64ae983fa129"],[-1.01773980560740177e-02,2.21168042066745896e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["64ae983fa129"],[-1.01773980560740177e-02,2.21168042066745896e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2210_3": [ +[[3,0,0,4,["5fbfadf51abc"],[-1.54563042364947945e-01,1.42979496965648156e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5fbfadf51abc"],[-1.54563042364947945e-01,1.42979496965648156e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["5fbfadf51abc"],[-1.54563042364947945e-01,1.42979496965648156e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2211_3": [ +[[3,0,0,4,["bd7cacca36fa"],[-3.96070387647903477e-01,-1.29444034950799369e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["bd7cacca36fa"],[-3.71594811830875782e-01,1.88533302035158529e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["bd7cacca36fa"],[-3.71594811830875782e-01,1.88533302035158529e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2212_3": [ +[[3,0,0,4,["7a1e7e6aec11"],[-1.82140932497935004e-01,1.97331963540971406e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["7a1e7e6aec11"],[-2.68327858065608493e-01,1.07416810637464416e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["7a1e7e6aec11"],[-2.68327858065608493e-01,1.07416810637464416e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2213_3": [ +[[3,0,0,4,["cb15d572acbf"],[-4.36522401787501235e-01,-9.42876994683799485e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["cb15d572acbf"],[-4.36522401787501235e-01,-9.42876994683799485e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["cb15d572acbf"],[-4.36522401787501235e-01,-9.42876994683799485e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +] +,"2214_3": [ +[[3,0,0,4,["df40f42ed0f8"],[-1.49862768838367355e-01,4.67507611580421034e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["df40f42ed0f8"],[-1.49862768838367300e-01,4.67507611580421090e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["df40f42ed0f8"],[-1.49862768838367355e-01,4.67507611580421034e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2215_3": [ +[[3,0,0,4,["7cad2b8c8534"],[-8.50645961438046688e-02,2.60636205012353961e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["7cad2b8c8534"],[-8.50645961438046966e-02,2.60636205012354016e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["7cad2b8c8534"],[-8.50645961438046688e-02,2.60636205012353961e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2216_3": [ +[[3,0,0,4,["73d69e4d12db"],[1.55122838146379644e-01,2.02051740129468138e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["73d69e4d12db"],[1.55122838146379644e-01,2.02051740129468138e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["73d69e4d12db"],[1.55122838146379644e-01,2.02051740129468138e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2217_3": [ +[[3,0,0,4,["91bd69c7dab2"],[-3.20087642281372042e-01,-1.59626162252284043e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["91bd69c7dab2"],[-3.20087642281372042e-01,-1.59626162252284043e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["91bd69c7dab2"],[-3.20087642281372042e-01,-1.59626162252284043e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2218_3": [ +[[3,0,0,4,["d4333ded372b"],[-4.65390187848317427e-01,3.40355428058365661e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["d4333ded372b"],[-4.65390187848317427e-01,3.40355428058365661e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["d4333ded372b"],[-4.65390187848317427e-01,3.40355428058365661e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2219_3": [ +[[3,0,0,4,["c0df110848cd"],[-9.08216863023875998e-02,4.14290337615568771e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["c0df110848cd"],[-9.08216863023875998e-02,4.14290337615568771e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["c0df110848cd"],[-9.08216863023875998e-02,4.14290337615568771e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2220_3": [ +[[3,0,0,4,["6edbee5bafca"],[-2.04838723170713194e-01,1.32176548526398596e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["6edbee5bafca"],[-2.04838723170713277e-01,1.32176548526398652e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["6edbee5bafca"],[-2.04838723170713194e-01,1.32176548526398596e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2221_3": [ +[[3,0,0,4,["cc6dae907e1b"],[-3.45186326973836499e-01,2.87984761018011626e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["cc6dae907e1b"],[-3.45186326973836499e-01,2.87984761018011626e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["cc6dae907e1b"],[-3.45186326973836499e-01,2.87984761018011626e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2222_3": [ +[[3,0,0,4,["26f4c2422eda"],[8.31828951381610171e-02,-2.04733353249997377e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["26f4c2422eda"],[8.31828951381610171e-02,-2.04733353249997377e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["26f4c2422eda"],[8.31828951381610171e-02,-2.04733353249997377e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2223_3": [ +[[3,0,0,4,["124c6caeab3c5"],[1.41646866763062498e-02,6.43666569483623330e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["124c6caeab3c5"],[1.41646866763062498e-02,6.43666569483623330e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["124c6caeab3c5"],[1.41646866763062498e-02,6.43666569483623330e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2224_3": [ +[[3,0,0,4,["3c934f88a567"],[1.33164291636690274e-01,3.36434997370849836e-03]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["3c934f88a567"],[1.33164291636690274e-01,3.36434997370849836e-03]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["3c934f88a567"],[1.33164291636690274e-01,3.36434997370849836e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2225_3": [ +[[3,0,0,4,["cf7b4aefabac"],[-6.88572628670280767e-02,4.51031071316793208e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["cf7b4aefabac"],[-6.88572628670280767e-02,4.51031071316793208e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["cf7b4aefabac"],[-6.88572628670280767e-02,4.51031071316793208e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2226_3": [ +[[3,0,0,4,["6d2c0895304a"],[-2.03384310027756532e-01,1.27551095530835795e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["6d2c0895304a"],[-2.03384310027756532e-01,1.27551095530835795e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["6d2c0895304a"],[-2.03384310027756532e-01,1.27551095530835795e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2227_3": [ +[[3,0,0,4,["a48771e9d0c0"],[-2.97565569629332782e-01,2.05806567661417472e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["a48771e9d0c0"],[-2.97565569629332782e-01,2.05806567661417472e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a48771e9d0c0"],[-2.97565569629332782e-01,2.05806567661417472e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2228_3": [ +[[3,0,0,4,["d091a7d717a6"],[-3.88966814197045263e-01,2.43028422265701455e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d091a7d717a6"],[-3.88966814197045152e-01,2.43028422265701538e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d091a7d717a6"],[-3.88966814197045263e-01,2.43028422265701455e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2229_3": [ +[[3,0,0,4,["98a56aec33a5"],[-3.06712182906719699e-01,-1.36395155539276502e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["98a56aec33a5"],[-3.06712182906719699e-01,-1.36395155539276502e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["98a56aec33a5"],[-3.06712182906719699e-01,-1.36395155539276502e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2230_3": [ +[[3,0,0,4,["c2114aac5001"],[-2.25163158993988144e-01,3.62525633909726197e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["c2114aac5001"],[-2.25163158993988144e-01,3.62525633909726197e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["c2114aac5001"],[-2.25163158993988144e-01,3.62525633909726197e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"2231_3": [ +[[3,0,0,4,["1bd9f329d87e"],[4.05261953328340530e-02,4.59203208496238025e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["1bd9f329d87e"],[4.05261953328340530e-02,4.59203208496238025e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["1bd9f329d87e"],[4.05261953328340530e-02,4.59203208496238025e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2232_3": [ +[[3,0,0,4,["c0b039f154ac"],[-3.50472939006020889e-01,2.38144165611674341e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["c0b039f154ac"],[-3.50472939006020889e-01,2.38144165611674341e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["c0b039f154ac"],[-3.50472939006020889e-01,2.38144165611674341e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2233_3": [ +[[3,0,0,4,["1381cc252afad"],[-1.27384890705526665e-01,6.74417403810735117e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["1381cc252afad"],[-1.27384890705526721e-01,6.74417403810735117e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["1381cc252afad"],[-1.27384890705526665e-01,6.74417403810735117e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2234_3": [ +[[3,0,0,4,["90d1c84bb21a"],[1.12154488677499831e-01,2.98058739620359447e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["90d1c84bb21a"],[1.12154488677499831e-01,2.98058739620359447e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["90d1c84bb21a"],[1.12154488677499831e-01,2.98058739620359447e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2235_3": [ +[[3,0,0,4,["129111962e89d"],[-6.46981209668458179e-01,9.03313062954264889e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["129111962e89d"],[-6.46981209668458179e-01,9.03313062954264889e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["129111962e89d"],[-6.46981209668458179e-01,9.03313062954264889e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2236_3": [ +[[3,0,0,4,["d7136e3a4d9d"],[-3.91215376283845895e-01,2.65779543137895424e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["d7136e3a4d9d"],[-3.91215376283845895e-01,2.65779543137895424e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["d7136e3a4d9d"],[-3.91215376283845895e-01,2.65779543137895424e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2237_3": [ +[[3,0,0,4,["d317b4dd20f1"],[-3.91249298496125775e-01,2.49806618139560455e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["d317b4dd20f1"],[-1.00015078429328608e-01,4.53294985772851766e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d317b4dd20f1"],[-1.00015078429328608e-01,4.53294985772851766e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2238_3": [ +[[3,0,0,4,["b368911819fc"],[-9.12863451313125629e-03,3.94417759417314218e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["b368911819fc"],[-9.12863451313125629e-03,3.94417759417314218e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["b368911819fc"],[-9.12863451313125629e-03,3.94417759417314218e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2239_3": [ +[[3,0,0,4,["4f7ec209fb07"],[1.73371993811696157e-01,-2.23891750978626597e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["4f7ec209fb07"],[1.73371993811696157e-01,-2.23891750978626597e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["4f7ec209fb07"],[1.73371993811696157e-01,-2.23891750978626597e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2240_3": [ +[[3,0,0,4,["fe380cf80093"],[-2.76423276844198207e-01,4.85909960992277568e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["fe380cf80093"],[-5.39051001998069101e-01,1.48129454929391280e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["fe380cf80093"],[-5.39051001998069101e-01,1.48129454929391280e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2241_3": [ +[[3,0,0,4,["d256df3aa831"],[2.68759547818271105e-01,3.76447316880217153e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d256df3aa831"],[2.68759547818271105e-01,3.76447316880217153e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d256df3aa831"],[2.68759547818271105e-01,3.76447316880217153e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2242_3": [ +[[3,0,0,4,["286900f2df3b"],[-1.60679838367146915e-03,-8.88483771230411112e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["286900f2df3b"],[-1.60679838367146915e-03,-8.88483771230411112e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["286900f2df3b"],[-1.60679838367146915e-03,-8.88483771230411112e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2243_3": [ +[[3,0,0,4,["bc863e89de1e"],[-3.87972741004222632e-01,1.46099420192314450e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["bc863e89de1e"],[-3.87972741004222632e-01,1.46099420192314450e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["bc863e89de1e"],[-3.87972741004222632e-01,1.46099420192314450e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2244_3": [ +[[3,0,0,4,["3e6188aac6ac"],[-5.96002520885484249e-02,1.23553260667059059e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["3e6188aac6ac"],[-5.96002520885484249e-02,1.23553260667059059e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["3e6188aac6ac"],[-5.96002520885484249e-02,1.23553260667059059e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2245_3": [ +[[3,0,0,4,["639fdab92592"],[-2.13461871601024644e-01,4.92799795910639285e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["639fdab92592"],[-2.13461871601024700e-01,4.92799795910639493e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["639fdab92592"],[-2.13461871601024644e-01,4.92799795910639285e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2246_3": [ +[[3,0,0,4,["640a833a7e81"],[-2.00256274559078962e-01,9.10723940690658651e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["640a833a7e81"],[-2.00256274559078962e-01,9.10723940690658651e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["640a833a7e81"],[-2.00256274559078962e-01,9.10723940690658651e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2247_3": [ +[[3,0,0,4,["3bce7ed567fa"],[-6.86900001518889469e-02,1.12152497770293250e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["3bce7ed567fa"],[-6.86900001518889469e-02,1.12152497770293250e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["3bce7ed567fa"],[-6.86900001518889469e-02,1.12152497770293250e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2248_3": [ +[[3,0,0,4,["a81791209ca1"],[-3.24847565681080530e-01,1.76370533922215161e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["a81791209ca1"],[-3.24847565681080530e-01,1.76370533922215161e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["a81791209ca1"],[-3.24847565681080530e-01,1.76370533922215161e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2249_3": [ +[[3,0,0,4,["5c93f9e282e7"],[2.01123919045263000e-01,3.15355728742000713e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["5c93f9e282e7"],[2.01123919045263000e-01,3.15355728742000713e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["5c93f9e282e7"],[2.01123919045263000e-01,3.15355728742000713e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2250_3": [ +[[3,0,0,4,["45037495a8fa"],[-1.08620324716998826e-01,1.05987813553160476e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["45037495a8fa"],[-1.08620324716998826e-01,1.05987813553160476e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["45037495a8fa"],[-1.08620324716998826e-01,1.05987813553160476e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2251_3": [ +[[3,0,0,4,["4939dcad1aad"],[-8.98858630325821972e-02,1.33603206904671368e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["4939dcad1aad"],[-8.98858630325821972e-02,1.33603206904671368e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["4939dcad1aad"],[-8.98858630325821972e-02,1.33603206904671368e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2252_3": [ +[[3,0,0,4,["134278498a583"],[-6.75989044555414864e-01,4.72536779318634970e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["134278498a583"],[-6.75989044555414864e-01,4.72536779318634970e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["134278498a583"],[-6.75989044555414864e-01,4.72536779318634970e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2253_3": [ +[[3,0,0,4,["cfb58f4ef8ca"],[-4.10974053884558543e-01,1.99317962370469920e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["cfb58f4ef8ca"],[-4.10974053884558543e-01,1.99317962370469920e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["cfb58f4ef8ca"],[-4.10974053884558543e-01,1.99317962370469920e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2254_3": [ +[[3,0,0,4,["736b87b02fc9"],[5.07247286550493032e-02,2.48690979852225325e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["736b87b02fc9"],[2.11718877879268491e-01,1.39983278667602573e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["736b87b02fc9"],[2.11718877879268491e-01,1.39983278667602573e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2255_3": [ +[[3,0,0,4,["e0cdd45b7192"],[-4.93507906115993156e-01,2.88296495896011307e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["e0cdd45b7192"],[-3.28577146259753872e-01,3.69348427707831717e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["e0cdd45b7192"],[-4.93507906115993156e-01,2.88296495896011307e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2256_3": [ +[[3,0,0,4,["b8f6d405512e"],[-2.81071904639740230e-02,4.05768202487670093e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["b8f6d405512e"],[-2.81071904639740230e-02,4.05768202487670093e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["b8f6d405512e"],[-2.81071904639740230e-02,4.05768202487670093e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2257_3": [ +[[3,0,0,4,["446ebaab5604"],[1.11009758877899503e-01,-1.01599654201569273e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["446ebaab5604"],[1.50337557732584254e-01,6.65394882830827594e-03]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["446ebaab5604"],[1.50337557732584254e-01,6.65394882830827594e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2258_3": [ +[[3,0,0,4,["10848301324e5"],[-4.25579540509527288e-01,3.95767090360254925e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["10848301324e5"],[-5.80779772392747140e-01,-2.10805856643364320e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["10848301324e5"],[-4.25579540509527288e-01,3.95767090360254925e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2259_3": [ +[[3,0,0,4,["6014e6a9af18"],[1.96988544682732802e-01,7.64015070827023801e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["6014e6a9af18"],[1.96988544682732802e-01,7.64015070827023801e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["6014e6a9af18"],[1.96988544682732802e-01,7.64015070827023801e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2260_3": [ +[[3,0,0,4,["46390462c7ac"],[1.23809589238661366e-01,-9.22884326438266067e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,4,["46390462c7ac"],[1.23809589238661366e-01,-9.22884326438266067e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["46390462c7ac"],[1.23809589238661366e-01,-9.22884326438266067e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2261_3": [ +[[3,0,0,4,["e6f630fe5656"],[-5.03565096753135766e-01,-6.61404861514574421e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["e6f630fe5656"],[-5.03565096753135766e-01,-6.61404861514574421e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["e6f630fe5656"],[-5.03565096753135766e-01,-6.61404861514574421e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2262_3": [ +[[3,0,0,4,["d9ddf98d718d"],[-4.78472506826219557e-01,2.44107225461968891e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d9ddf98d718d"],[-4.78472506826219557e-01,2.44107225461968891e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d9ddf98d718d"],[-4.78472506826219557e-01,2.44107225461968891e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"2263_3": [ +[[3,0,0,4,["2bb10d416ccd"],[1.32072256366230489e-02,9.51667859273119532e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["2bb10d416ccd"],[1.32072256366230489e-02,9.51667859273119532e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["2bb10d416ccd"],[1.32072256366230489e-02,9.51667859273119532e-02]],[["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2264_3": [ +[[3,0,0,4,["d5c403d93a5c"],[-4.23838362815523784e-01,2.03303258954018379e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d5c403d93a5c"],[-4.23838362815523784e-01,2.03303258954018379e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d5c403d93a5c"],[-4.23838362815523784e-01,2.03303258954018379e-01]],[["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2265_3": [ +[[3,0,0,4,["d6313643ba26"],[-3.49415512194674593e-01,3.15852353918346429e-01]],[["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["d6313643ba26"],[-3.49415512194674593e-01,3.15852353918346429e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["d6313643ba26"],[-3.49415512194674593e-01,3.15852353918346429e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2266_3": [ +[[3,0,0,4,["11d1936680d46"],[-3.96942913614343751e-01,4.85270885357744375e-01]],[["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["11d1936680d46"],[-3.96942913614343751e-01,4.85270885357744375e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["11d1936680d46"],[-3.96942913614343751e-01,4.85270885357744375e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2267_3": [ +[[3,0,0,5,["e9ba4a9f7efa"],[-3.82814581272396093e-01,3.42959008677585220e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["e9ba4a9f7efa"],[-3.82814581272396093e-01,3.42959008677585220e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["e9ba4a9f7efa"],[-3.82814581272396093e-01,3.42959008677585220e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2268_3": [ +[[3,0,0,5,["8378db08f80f"],[4.06395212816440532e-03,2.89081623816405453e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["8378db08f80f"],[4.06395212816440532e-03,2.89081623816405453e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["8378db08f80f"],[4.06395212816440532e-03,2.89081623816405453e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2269_3": [ +[[3,0,0,5,["5d12d0c0a711"],[-1.69552647799419004e-01,1.14638694743366437e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["5d12d0c0a711"],[-1.69552647799419004e-01,1.14638694743366437e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["5d12d0c0a711"],[-1.69552647799419004e-01,1.14638694743366437e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2270_3": [ +[[3,0,0,5,["c534cb4f778d"],[-4.28807927871520000e-01,-6.46969336337563650e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["c534cb4f778d"],[-3.48960634118908930e-01,2.57465353130098662e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["c534cb4f778d"],[-3.48960634118908930e-01,2.57465353130098662e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2271_3": [ +[[3,0,0,5,["a7c01103f1fc"],[-3.59363992263541765e-01,-8.32762557848408247e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["a7c01103f1fc"],[-3.12993921021106791e-01,1.95223510666534011e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["a7c01103f1fc"],[-3.12993921021106791e-01,1.95223510666534011e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2272_3": [ +[[3,0,0,5,["604ad36492cd"],[-1.09467824015771098e-01,1.81257900243365300e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["604ad36492cd"],[-2.05574131089005685e-01,5.07632497224309726e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["604ad36492cd"],[-2.05574131089005685e-01,5.07632497224309726e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2273_3": [ +[[3,0,0,5,["80fa5599587d"],[-1.45434537113573292e-01,2.43499742706929923e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["80fa5599587d"],[-2.75018066696983976e-01,6.93425718735154323e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["80fa5599587d"],[-2.75018066696983976e-01,6.93425718735154323e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2274_3": [ +[[3,0,0,5,["9ec5b2c42e50"],[3.29903695245063244e-01,1.14302264694785702e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9ec5b2c42e50"],[3.29903695245063244e-01,1.14302264694785702e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["9ec5b2c42e50"],[3.29903695245063244e-01,1.14302264694785702e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2275_3": [ +[[3,0,0,5,["4ba0a806f033"],[-7.25002348881138292e-02,1.49671835268945563e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["4ba0a806f033"],[-7.25002348881138292e-02,1.49671835268945563e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["4ba0a806f033"],[-7.25002348881138292e-02,1.49671835268945563e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2276_3": [ +[[3,0,0,5,["76fb78e64627"],[-1.84087444776442816e-01,1.85929699087333838e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["76fb78e64627"],[-1.84087444776442816e-01,1.85929699087333838e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["76fb78e64627"],[-1.84087444776442816e-01,1.85929699087333838e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2277_3": [ +[[3,0,0,5,["e08566588a87"],[-2.93811258172348100e-01,3.96788858825842194e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["e08566588a87"],[-2.93811258172348100e-01,3.96788858825842194e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["e08566588a87"],[-2.93811258172348100e-01,3.96788858825842194e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2278_3": [ +[[3,0,0,5,["8bcacbf06d63"],[2.66254771670362822e-03,3.07394711550328714e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["8bcacbf06d63"],[2.66254771670362822e-03,3.07394711550328714e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["8bcacbf06d63"],[2.66254771670362822e-03,3.07394711550328714e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2279_3": [ +[[3,0,0,5,["f0a69bdabf07"],[-1.07061265679201628e-01,5.18253871288837042e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["f0a69bdabf07"],[-1.07061265679201628e-01,5.18253871288837042e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["f0a69bdabf07"],[-1.07061265679201628e-01,5.18253871288837042e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2280_3": [ +[[3,0,0,5,["595caf9027f5"],[-1.96150188672657461e-01,-1.18736171926454998e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["595caf9027f5"],[-1.96150188672657461e-01,-1.18736171926454998e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["595caf9027f5"],[-1.96150188672657461e-01,-1.18736171926454998e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2281_3": [ +[[3,0,0,5,["5db27a2e694a"],[-1.41581025159443985e-01,1.49693789753786166e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5db27a2e694a"],[-1.41581025159443985e-01,1.49693789753786166e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["5db27a2e694a"],[-1.41581025159443985e-01,1.49693789753786166e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2282_3": [ +[[3,0,0,5,["903ca32c79b3"],[-2.46312095573328171e-01,1.99834040099045374e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["903ca32c79b3"],[-2.46312095573328171e-01,1.99834040099045374e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["903ca32c79b3"],[-2.46312095573328171e-01,1.99834040099045374e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2283_3": [ +[[3,0,0,5,["c20e43aad75f"],[-5.52684494192201559e-03,4.26697249156233416e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["c20e43aad75f"],[-5.52684494192201559e-03,4.26697249156233416e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c20e43aad75f"],[-5.52684494192201559e-03,4.26697249156233416e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]]]] +] +,"2284_3": [ +[[3,0,0,5,["9be7b84c979a"],[-3.18453971876145159e-01,1.26986972938908760e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,5,["9be7b84c979a"],[-3.18453971876145159e-01,1.26986972938908760e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["9be7b84c979a"],[-3.18453971876145159e-01,1.26986972938908760e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2285_3": [ +[[3,0,0,5,["6a720882c7d6"],[-1.35442094766727222e-01,1.90911011320882978e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["6a720882c7d6"],[-1.35442094766727222e-01,1.90911011320882978e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6a720882c7d6"],[-1.35442094766727222e-01,1.90911011320882978e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2286_3": [ +[[3,0,0,5,["9d3686191dfc"],[-1.26132533994766927e-02,3.45484836172523013e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["9d3686191dfc"],[-1.26132533994766927e-02,3.45484836172523013e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["9d3686191dfc"],[-1.26132533994766927e-02,3.45484836172523013e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2287_3": [ +[[3,0,0,5,["464768fa51ba"],[1.35980560836107434e-01,7.34401466432713090e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["464768fa51ba"],[1.35980560836107434e-01,7.34401466432713090e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["464768fa51ba"],[1.35980560836107434e-01,7.34401466432713090e-02]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2288_3": [ +[[3,0,0,5,["67e0469d8a0d"],[-1.96860936864088260e-01,1.15862711670193880e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["67e0469d8a0d"],[-1.96860936864088260e-01,1.15862711670193880e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["67e0469d8a0d"],[-1.96860936864088260e-01,1.15862711670193880e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2289_3": [ +[[3,0,0,5,["c90b2725e15c"],[-3.48332520207765728e-01,2.72243279323107767e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["c90b2725e15c"],[-3.48332520207765728e-01,2.72243279323107767e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["c90b2725e15c"],[-3.48332520207765728e-01,2.72243279323107767e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"2290_3": [ +[[3,0,0,5,["978e6a025954"],[3.25145727597858092e-01,7.31644786629914723e-02]],[["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["978e6a025954"],[3.25145727597858092e-01,7.31644786629914723e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["978e6a025954"],[3.25145727597858092e-01,7.31644786629914723e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2291_3": [ +[[3,0,0,5,["34ade50113d8"],[-7.69577010233757353e-03,1.15587043689914043e-01]],[["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["34ade50113d8"],[-7.69577010233757353e-03,1.15587043689914043e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["34ade50113d8"],[-7.69577010233757353e-03,1.15587043689914043e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +,"2292_3": [ +[[3,0,0,5,["df764378cc2a"],[2.71546572959112109e-01,4.09554043194890527e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["df764378cc2a"],[2.71546572959112109e-01,4.09554043194890527e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["df764378cc2a"],[2.71546572959112109e-01,4.09554043194890527e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2293_3": [ +[[3,0,0,5,["808a68b89573"],[2.44447255417562459e-01,1.41931041538119723e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["808a68b89573"],[2.44447255417562459e-01,1.41931041538119723e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["808a68b89573"],[2.44447255417562459e-01,1.41931041538119723e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2294_3": [ +[[3,0,0,5,["a80ca7764e79"],[-2.25613677196875279e-01,-2.92680173443868985e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["a80ca7764e79"],[-2.25613677196875279e-01,-2.92680173443868985e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a80ca7764e79"],[-2.25613677196875279e-01,-2.92680173443868985e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2295_3": [ +[[3,0,0,5,["9eaac7ced73d"],[-3.48893824358624371e-01,-3.62615589051004661e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["9eaac7ced73d"],[-3.48893824358624371e-01,-3.62615589051004661e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["9eaac7ced73d"],[-3.48893824358624371e-01,-3.62615589051004661e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2296_3": [ +[[3,0,0,5,["c02363738e63"],[-3.33565921643644125e-01,2.59333619647492242e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c02363738e63"],[-3.33565921643644125e-01,2.59333619647492242e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["c02363738e63"],[-3.33565921643644125e-01,2.59333619647492242e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2297_3": [ +[[3,0,0,5,["81ac74297271"],[-1.86167451202077061e-01,-2.15998294288155479e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["81ac74297271"],[-1.86167451202077061e-01,-2.15998294288155479e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["81ac74297271"],[-1.86167451202077061e-01,-2.15998294288155479e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2298_3": [ +[[3,0,0,5,["7ba135e261c8"],[-5.77775295181785081e-02,2.65654181019019386e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["7ba135e261c8"],[-5.77775295181785081e-02,2.65654181019019386e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["7ba135e261c8"],[-5.77775295181785081e-02,2.65654181019019386e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2299_3": [ +[[3,0,0,5,["77e0b8bca12b"],[1.12693882366821457e-01,2.38311746790656309e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["77e0b8bca12b"],[1.12693882366821457e-01,2.38311746790656309e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["77e0b8bca12b"],[1.12693882366821457e-01,2.38311746790656309e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2300_3": [ +[[3,0,0,5,["b1d474edcca3"],[2.83050463004497876e-01,2.69822506255499639e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["b1d474edcca3"],[2.83050463004497876e-01,2.69822506255499639e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["b1d474edcca3"],[2.83050463004497876e-01,2.69822506255499639e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2301_3": [ +[[3,0,0,5,["c28eecb7edf1"],[-4.05090060412116593e-01,1.37650244948846479e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["c28eecb7edf1"],[-4.05090060412116593e-01,1.37650244948846479e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["c28eecb7edf1"],[-4.05090060412116593e-01,1.37650244948846479e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2302_3": [ +[[3,0,0,5,["5eeb16be8a0c"],[-7.89429652958167916e-02,1.93223219305643457e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["5eeb16be8a0c"],[-7.89429652958167916e-02,1.93223219305643457e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5eeb16be8a0c"],[-7.89429652958167916e-02,1.93223219305643457e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2303_3": [ +[[3,0,0,5,["1191741c37ef7"],[-1.51296324008505345e-01,5.99323219276850949e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["1191741c37ef7"],[-1.51296324008505345e-01,5.99323219276850949e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["1191741c37ef7"],[-1.51296324008505345e-01,5.99323219276850949e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2304_3": [ +[[3,0,0,5,["102d39ab8f57e"],[-1.38289177140394404e-01,5.52110189037361199e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["102d39ab8f57e"],[-1.38289177140394404e-01,5.52110189037361199e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["102d39ab8f57e"],[-1.38289177140394404e-01,5.52110189037361199e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2305_3": [ +[[3,0,0,5,["6fc794f1203c"],[-1.48320992119263889e-01,1.96013930983016088e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["6fc794f1203c"],[-1.48320992119263889e-01,1.96013930983016088e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["6fc794f1203c"],[-1.48320992119263889e-01,1.96013930983016088e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2306_3": [ +[[3,0,0,5,["ef8d425cf92b"],[-1.15675471273161135e-01,5.13922482032214578e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["ef8d425cf92b"],[-1.15675471273161135e-01,5.13922482032214578e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["ef8d425cf92b"],[2.81603161894998566e-01,4.45192982203402421e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"2307_3": [ +[[3,0,0,5,["247a02fdfeb0"],[7.03985868429900519e-02,3.84467142979529886e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["247a02fdfeb0"],[7.03985868429900519e-02,3.84467142979529886e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["247a02fdfeb0"],[7.03985868429900519e-02,3.84467142979529886e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2308_3": [ +[[3,0,0,5,["8ebd69eb159e"],[-3.13739151377591452e-01,-9.67696446253032971e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8ebd69eb159e"],[-3.13739151377591452e-01,-9.67696446253032971e-03]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["8ebd69eb159e"],[-3.13739151377591452e-01,-9.67696446253032971e-03]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2309_3": [ +[[3,0,0,5,["1dfc5b829eb6"],[6.54227210636307149e-02,8.23851699277651506e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["1dfc5b829eb6"],[6.54227210636307149e-02,8.23851699277651506e-03]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["1dfc5b829eb6"],[4.04353384752563494e-02,5.20863609402821282e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +] +,"2310_3": [ +[[3,0,0,5,["5e9e3c73de6c"],[-9.19998895232401748e-03,-2.07863929510969769e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["5e9e3c73de6c"],[-9.19998895232401748e-03,-2.07863929510969769e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["5e9e3c73de6c"],[-9.19998895232401748e-03,-2.07863929510969769e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2311_3": [ +[[3,0,0,5,["1027ca3674c2f"],[-5.41714253798607714e-01,1.72178429380383857e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["1027ca3674c2f"],[-5.41714253798607714e-01,1.72178429380383857e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["1027ca3674c2f"],[-5.41714253798607714e-01,1.72178429380383857e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2312_3": [ +[[3,0,0,5,["77fbb917e418"],[-2.60053382602911998e-01,-4.45755223371956111e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["77fbb917e418"],[-2.60053382602911998e-01,-4.45755223371956111e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["77fbb917e418"],[-2.60053382602911998e-01,-4.45755223371956111e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2313_3": [ +[[3,0,0,5,["887242751018"],[2.98677825985690815e-01,2.86486609051989118e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["887242751018"],[2.98677825985690815e-01,2.86486609051989118e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["887242751018"],[2.98677825985690815e-01,2.86486609051989118e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2314_3": [ +[[3,0,0,5,["44be04d043f4"],[-9.02455484912839390e-02,-1.21271799186105728e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["44be04d043f4"],[-1.49565350881274817e-01,-2.19388722611023046e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["44be04d043f4"],[-9.02455484912839390e-02,-1.21271799186105728e-01]],[["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2315_3": [ +[[3,0,0,5,["815b2cbd1ef1"],[-7.53303246454175290e-02,2.74301353258275760e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["815b2cbd1ef1"],[-2.47226930363332292e-01,1.40693763591814569e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["815b2cbd1ef1"],[-7.53303246454175290e-02,2.74301353258275760e-01]],[["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2316_3": [ +[[3,0,0,5,["44feebfd3088"],[4.38134240852311729e-02,1.45259618457097978e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["44feebfd3088"],[4.38134240852311729e-02,1.45259618457097978e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["44feebfd3088"],[4.38134240852311729e-02,1.45259618457097978e-01]],[["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2317_3": [ +[[3,0,0,5,["b696768e7e4c"],[-3.58590506047945901e-01,1.80629189031257825e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["b696768e7e4c"],[-3.58590506047945901e-01,1.80629189031257825e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["b696768e7e4c"],[-3.58590506047945901e-01,1.80629189031257825e-01]],[["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +] +,"2318_3": [ +[[3,0,0,5,["99c9bedce631"],[-2.42218879882420912e-01,2.36004492429616769e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["99c9bedce631"],[-2.42218879882420912e-01,2.36004492429616769e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["99c9bedce631"],[-2.42218879882420912e-01,2.36004492429616769e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +] +,"2319_3": [ +[[3,0,0,5,["8a80eefbf15b"],[1.40929292653027949e-01,2.70006459821050371e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["8a80eefbf15b"],[1.40929292653027949e-01,2.70006459821050371e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["8a80eefbf15b"],[1.40929292653027949e-01,2.70006459821050371e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2320_3": [ +[[3,0,0,5,["e6c20b677acb"],[3.12577753059404218e-01,3.99740807357372663e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["e6c20b677acb"],[3.12577753059404218e-01,3.99740807357372663e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["e6c20b677acb"],[3.12577753059404218e-01,3.99740807357372663e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["h", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2321_3": [ +[[3,0,0,5,["3f7767140ff2"],[-1.34949695299971417e-01,3.55910806128912419e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["3f7767140ff2"],[-1.34949695299971417e-01,3.55910806128912419e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["3f7767140ff2"],[-1.34949695299971417e-01,3.55910806128912419e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2322_3": [ +[[3,0,0,5,["7213bb6433b5"],[-2.39946047386330935e-01,-7.31826797300638571e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["7213bb6433b5"],[-2.39946047386330935e-01,-7.31826797300638571e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["7213bb6433b5"],[-2.39946047386330935e-01,-7.31826797300638571e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["h", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2323_3": [ +[[3,0,0,5,["70f22d099909"],[4.12349281517763178e-02,2.44924018284355838e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["70f22d099909"],[4.12349281517763178e-02,2.44924018284355838e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["70f22d099909"],[4.12349281517763178e-02,2.44924018284355838e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2324_3": [ +[[3,0,0,5,["c464ca5dd0d5"],[1.64063769519026792e-01,3.99497843135995900e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["c464ca5dd0d5"],[1.64063769519026792e-01,3.99497843135995900e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["c464ca5dd0d5"],[1.64063769519026792e-01,3.99497843135995900e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2325_3": [ +[[3,0,0,5,["a3944f7087ff"],[-4.59890385732978912e-02,3.56762836611125400e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["a3944f7087ff"],[-4.59890385732978912e-02,3.56762836611125400e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["a3944f7087ff"],[-4.59890385732978912e-02,3.56762836611125400e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2326_3": [ +[[3,0,0,5,["1108138cf1257"],[-5.98124024665857679e-01,-3.66254292006631815e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["1108138cf1257"],[-5.98124024665857679e-01,-3.66254292006631815e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["1108138cf1257"],[-5.98124024665857679e-01,-3.66254292006631815e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2327_3": [ +[[3,0,0,5,["69e885ae51cf"],[1.82468784131695011e-01,1.44724314034957446e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["69e885ae51cf"],[1.82468784131695011e-01,1.44724314034957446e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["69e885ae51cf"],[1.82468784131695011e-01,1.44724314034957446e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2328_3": [ +[[3,0,0,5,["ff73bef1c024"],[-5.18172111779935607e-01,2.16922358135294840e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["ff73bef1c024"],[-5.18172111779935607e-01,2.16922358135294840e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["ff73bef1c024"],[-5.18172111779935607e-01,2.16922358135294840e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +] +,"2329_3": [ +[[3,0,0,5,["59ca38ead745"],[1.96280897121561854e-01,2.14562280730635144e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["59ca38ead745"],[1.96280897121561854e-01,2.14562280730635144e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,5,["59ca38ead745"],[1.96280897121561854e-01,2.14562280730635144e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2330_3": [ +[[3,0,0,5,["8eaab4ca356d"],[-2.93902443008061509e-01,-1.09756079813075294e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["8eaab4ca356d"],[-2.93902443008061509e-01,-1.09756079813075294e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["8eaab4ca356d"],[-2.93902443008061509e-01,-1.09756079813075294e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2331_3": [ +[[3,0,0,5,["9013ed371c9b"],[-3.15455752093938058e-01,2.94829626708978249e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,5,["9013ed371c9b"],[-3.15455752093938058e-01,2.94829626708978249e-02]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q2"],["Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["9013ed371c9b"],[-3.15455752093938058e-01,2.94829626708978249e-02]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2332_3": [ +[[3,0,0,5,["8ec5af381e7b"],[-2.62997605344389651e-01,1.71472340825221170e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["8ec5af381e7b"],[-2.62997605344389651e-01,1.71472340825221170e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["8ec5af381e7b"],[-6.47181351913965336e-02,3.07216645158286061e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"2333_3": [ +[[3,0,0,5,["c78ad8085e7e"],[-4.31438058718865536e-01,8.00321108197475928e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["c78ad8085e7e"],[-4.31438058718865536e-01,8.00321108197475928e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["c78ad8085e7e"],[-4.31438058718865536e-01,8.00321108197475928e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["t", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2334_3": [ +[[3,0,0,5,["d80d8e709250"],[-6.33150863091061639e-02,4.70867719440993260e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,5,["d80d8e709250"],[-6.33150863091061639e-02,4.70867719440993260e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q0"],["Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,5,["d80d8e709250"],[-3.77724284339151617e-01,2.88183230577990446e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["t", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +] +,"2335_3": [ +[[3,0,0,5,["9c98c2a500ed"],[-1.81419847686777491e-01,2.92695286553851575e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,5,["9c98c2a500ed"],[-1.81419847686777491e-01,2.92695286553851575e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,5,["9c98c2a500ed"],[-1.81419847686777491e-01,2.92695286553851575e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["tdg", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2336_4": [ +[[3,0,0,2,["3f10a3ca1b5"],[2.86396775378047752e-03,-8.18075556930082659e-03]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,2,["3f10a3ca1b5"],[2.86396775378047752e-03,-8.18075556930082659e-03]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,3,["3f10a3ca1b5"],[2.86396775378047752e-03,-8.18075556930082659e-03]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,3,["3f10a3ca1b5"],[2.86396775378047752e-03,-8.18075556930082659e-03]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2337_4": [ +[[3,0,0,2,["8a83c2e939d0"],[-2.66682178771743050e-01,1.47173254071949533e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,2,["8a83c2e939d0"],[-2.66682178771743050e-01,1.47173254071949533e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,3,["8a83c2e939d0"],[-2.66682178771743050e-01,1.47173254071949533e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,3,["8a83c2e939d0"],[-2.66682178771743050e-01,1.47173254071949533e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2338_4": [ +[[3,0,0,2,["c281a21d5013"],[-3.71831387105971134e-01,2.11398403272353264e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,2,["c281a21d5013"],[-3.71831387105971134e-01,2.11398403272353264e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,3,["c281a21d5013"],[-3.71831387105971134e-01,2.11398403272353264e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,3,["c281a21d5013"],[-3.71831387105971134e-01,2.11398403272353264e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2339_4": [ +[[3,0,0,2,["d8572de61905"],[9.90963895833117669e-02,4.65302528777091273e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,2,["d8572de61905"],[9.90963895833117669e-02,4.65302528777091273e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,3,["d8572de61905"],[9.90963895833117669e-02,4.65302528777091273e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,3,["d8572de61905"],[9.90963895833117669e-02,4.65302528777091273e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2340_4": [ +[[3,0,0,2,["7e66d2a2c0bc"],[6.27371860767233364e-03,2.77889361579303773e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,2,["7e66d2a2c0bc"],[6.27371860767233364e-03,2.77889361579303773e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,3,["7e66d2a2c0bc"],[6.27371860767233364e-03,2.77889361579303773e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,3,["7e66d2a2c0bc"],[6.27371860767233364e-03,2.77889361579303773e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2341_4": [ +[[3,0,0,2,["abe66b044d52"],[-3.32058500519354427e-01,1.80638908615953137e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,2,["abe66b044d52"],[-3.32058500519354427e-01,1.80638908615953137e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,3,["abe66b044d52"],[-3.32058500519354427e-01,1.80638908615953137e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,3,["abe66b044d52"],[-3.32058500519354427e-01,1.80638908615953137e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +] +,"2342_4": [ +[[3,0,0,4,["f7dee4425bea"],[-2.25592489683769604e-01,4.96198554889207166e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["f7dee4425bea"],[-2.25592489683769604e-01,4.96198554889207166e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["f7dee4425bea"],[-2.25592489683769604e-01,4.96198554889207166e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["f7dee4425bea"],[-2.25592489683769604e-01,4.96198554889207166e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2343_4": [ +[[3,0,0,4,["9c29f0f7876d"],[-3.20076789905208270e-01,1.24417984318146421e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,4,["9c29f0f7876d"],[-3.20076789905208270e-01,1.24417984318146421e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["9c29f0f7876d"],[-3.20076789905208270e-01,1.24417984318146421e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["9c29f0f7876d"],[-3.20076789905208270e-01,1.24417984318146421e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2344_4": [ +[[3,0,0,4,["6c64770c5ea3"],[-2.25375357899765871e-01,-7.75902422637510525e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["6c64770c5ea3"],[-2.25375357899765871e-01,-7.75902422637510525e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["6c64770c5ea3"],[-2.25375357899765871e-01,-7.75902422637510525e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["6c64770c5ea3"],[-2.25375357899765871e-01,-7.75902422637510525e-02]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"2345_4": [ +[[3,0,0,4,["dc53d4e2c32d"],[-3.96166370120940636e-01,2.78922066751925213e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["dc53d4e2c32d"],[-3.96166370120940636e-01,2.78922066751925213e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["x", ["Q0"],["Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,4,["dc53d4e2c32d"],[-3.96166370120940636e-01,2.78922066751925213e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["dc53d4e2c32d"],[-3.96166370120940636e-01,2.78922066751925213e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]],["x", ["Q1"],["Q1"]]]] +] +,"2346_4": [ +[[3,0,0,4,["47a0f2c12a05"],[-1.25918274345667880e-01,9.46308195208704767e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["47a0f2c12a05"],[-1.25918274345667880e-01,9.46308195208704767e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,4,["47a0f2c12a05"],[-1.25918274345667880e-01,9.46308195208704767e-02]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,4,["47a0f2c12a05"],[-1.25918274345667880e-01,9.46308195208704767e-02]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]]]] +] +,"2347_4": [ +[[3,0,0,4,["8c863dc8bccb"],[7.96042031922034182e-02,2.98587163206070760e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,4,["8c863dc8bccb"],[7.96042031922034182e-02,2.98587163206070760e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["8c863dc8bccb"],[7.96042031922034182e-02,2.98587163206070760e-01]],[["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,5,["8c863dc8bccb"],[7.96042031922034182e-02,2.98587163206070760e-01]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +] +,"2348_4": [ +[[3,0,0,4,["533122bd542d"],[-1.64713818894922037e-01,7.96038210374792332e-02]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["533122bd542d"],[-1.64713818894922037e-01,7.96038210374792332e-02]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["x", ["Q0"],["Q0"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["533122bd542d"],[-1.64713818894922037e-01,7.96038210374792332e-02]],[["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,5,["533122bd542d"],[-1.64713818894922037e-01,7.96038210374792332e-02]],[["x", ["Q0"],["Q0"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2349_4": [ +[[3,0,0,4,["a152b009632d"],[7.06360615146852527e-02,3.47649616682620177e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["x", ["Q2"],["Q2"]]]] +,[[3,0,0,4,["a152b009632d"],[7.06360615146852527e-02,3.47649616682620177e-01]],[["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,4,["a152b009632d"],[7.06360615146852527e-02,3.47649616682620177e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]],["x", ["Q1"],["Q1"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,4,["a152b009632d"],[7.06360615146852527e-02,3.47649616682620177e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]],["x", ["Q2"],["Q2"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +] +,"2350_19": [ +[[3,0,0,0,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965553e-01,2.32984007190124576e-01]],[["t", ["Q0"],["Q0"]],["tdg", ["Q0"],["Q0"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965553e-01,2.32984007190124576e-01]],[["tdg", ["Q0"],["Q0"]],["t", ["Q0"],["Q0"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965442e-01,2.32984007190124548e-01]],[["h", ["Q0"],["Q0"]],["h", ["Q0"],["Q0"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[["x", ["Q0"],["Q0"]],["x", ["Q0"],["Q0"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[["cx", ["Q0", "Q1"],["Q0", "Q1"]],["cx", ["Q0", "Q1"],["Q0", "Q1"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[["cx", ["Q1", "Q0"],["Q1", "Q0"]],["cx", ["Q1", "Q0"],["Q1", "Q0"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[["cx", ["Q0", "Q2"],["Q0", "Q2"]],["cx", ["Q0", "Q2"],["Q0", "Q2"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[["cx", ["Q2", "Q0"],["Q2", "Q0"]],["cx", ["Q2", "Q0"],["Q2", "Q0"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965553e-01,2.32984007190124548e-01]],[["t", ["Q1"],["Q1"]],["tdg", ["Q1"],["Q1"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965553e-01,2.32984007190124548e-01]],[["tdg", ["Q1"],["Q1"]],["t", ["Q1"],["Q1"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[["h", ["Q1"],["Q1"]],["h", ["Q1"],["Q1"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[["x", ["Q1"],["Q1"]],["x", ["Q1"],["Q1"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[["cx", ["Q1", "Q2"],["Q1", "Q2"]],["cx", ["Q1", "Q2"],["Q1", "Q2"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[["cx", ["Q2", "Q1"],["Q2", "Q1"]],["cx", ["Q2", "Q1"],["Q2", "Q1"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965553e-01,2.32984007190124548e-01]],[["t", ["Q2"],["Q2"]],["tdg", ["Q2"],["Q2"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965553e-01,2.32984007190124548e-01]],[["tdg", ["Q2"],["Q2"]],["t", ["Q2"],["Q2"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124548e-01]],[["h", ["Q2"],["Q2"]],["h", ["Q2"],["Q2"]]]] +,[[3,0,0,2,["9c943fde5e7b"],[-2.53526052693965498e-01,2.32984007190124576e-01]],[["x", ["Q2"],["Q2"]],["x", ["Q2"],["Q2"]]]] +] +} +] diff --git a/test_files/barenco_tof_5.json b/test_files/barenco_tof_5.json new file mode 100644 index 00000000..dc7a61a0 --- /dev/null +++ b/test_files/barenco_tof_5.json @@ -0,0 +1 @@ +{"bits": [], "commands": [{"args": [["q", [8]]], "op": {"type": "H"}}, {"args": [["q", [7]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"type": "Tdg"}}, {"args": [["q", [4]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"type": "T"}}, {"args": [["q", [7]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"type": "Tdg"}}, {"args": [["q", [4]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [4]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"type": "T"}}, {"args": [["q", [7]]], "op": {"type": "Tdg"}}, {"args": [["q", [4]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [4]]], "op": {"type": "T"}}, {"args": [["q", [7]]], "op": {"type": "T"}}, {"args": [["q", [7]]], "op": {"type": "H"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "Tdg"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "T"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "Tdg"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "T"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [3]]], "op": {"type": "T"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [6]]], "op": {"type": "H"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [5]]], "op": {"type": "Tdg"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [2]]], "op": {"type": "T"}}, {"args": [["q", [5]]], "op": {"type": "T"}}, {"args": [["q", [5]]], "op": {"type": "H"}}, {"args": [["q", [1]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "Tdg"}}, {"args": [["q", [0]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "T"}}, {"args": [["q", [1]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "Tdg"}}, {"args": [["q", [0]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "T"}}, {"args": [["q", [1]]], "op": {"type": "Tdg"}}, {"args": [["q", [5]]], "op": {"type": "H"}}, {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [0]]], "op": {"type": "T"}}, {"args": [["q", [1]]], "op": {"type": "T"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [5]]], "op": {"type": "T"}}, {"args": [["q", [6]]], "op": {"type": "H"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [2]]], "op": {"type": "Tdg"}}, {"args": [["q", [5]]], "op": {"type": "Tdg"}}, {"args": [["q", [7]]], "op": {"type": "T"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "Tdg"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "T"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "Tdg"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [7]]], "op": {"type": "H"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [7]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [3]]], "op": {"type": "Tdg"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [8]]], "op": {"type": "T"}}, {"args": [["q", [4]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"type": "Tdg"}}, {"args": [["q", [7]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"type": "T"}}, {"args": [["q", [4]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [4]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"type": "Tdg"}}, {"args": [["q", [7]]], "op": {"type": "T"}}, {"args": [["q", [8]]], "op": {"type": "H"}}, {"args": [["q", [4]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [4]]], "op": {"type": "Tdg"}}, {"args": [["q", [7]]], "op": {"type": "Tdg"}}, {"args": [["q", [7]]], "op": {"type": "H"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "Tdg"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "T"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "Tdg"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "T"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [3]]], "op": {"type": "T"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [6]]], "op": {"type": "H"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [5]]], "op": {"type": "Tdg"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [2]]], "op": {"type": "T"}}, {"args": [["q", [5]]], "op": {"type": "T"}}, {"args": [["q", [5]]], "op": {"type": "H"}}, {"args": [["q", [1]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "T"}}, {"args": [["q", [0]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "Tdg"}}, {"args": [["q", [1]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "T"}}, {"args": [["q", [0]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "Tdg"}}, {"args": [["q", [1]]], "op": {"type": "T"}}, {"args": [["q", [5]]], "op": {"type": "H"}}, {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [0]]], "op": {"type": "Tdg"}}, {"args": [["q", [1]]], "op": {"type": "Tdg"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}, {"args": [["q", [5]]], "op": {"type": "T"}}, {"args": [["q", [6]]], "op": {"type": "H"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [2]]], "op": {"type": "Tdg"}}, {"args": [["q", [5]]], "op": {"type": "Tdg"}}, {"args": [["q", [7]]], "op": {"type": "T"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "Tdg"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "T"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "Tdg"}}, {"args": [["q", [6]]], "op": {"type": "T"}}, {"args": [["q", [7]]], "op": {"type": "H"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [3]]], "op": {"type": "Tdg"}}, {"args": [["q", [6]]], "op": {"type": "Tdg"}}], "created_qubits": [], "discarded_qubits": [], "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]], [["q", [2]], ["q", [2]]], [["q", [3]], ["q", [3]]], [["q", [4]], ["q", [4]]], [["q", [5]], ["q", [5]]], [["q", [6]], ["q", [6]]], [["q", [7]], ["q", [7]]], [["q", [8]], ["q", [8]]]], "phase": "0.0", "qubits": [["q", [0]], ["q", [1]], ["q", [2]], ["q", [3]], ["q", [4]], ["q", [5]], ["q", [6]], ["q", [7]], ["q", [8]]]} \ No newline at end of file diff --git a/test_files/barenco_tof_5_rm.json b/test_files/barenco_tof_5_rm.json new file mode 100644 index 00000000..6675f034 --- /dev/null +++ b/test_files/barenco_tof_5_rm.json @@ -0,0 +1 @@ +{"bits": [], "commands": [{"args": [["q", [8]]], "op": {"type": "H"}}, {"args": [["q", [7]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [4]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [7]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [4]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [4]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [4]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [7]]], "op": {"type": "H"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [6]]], "op": {"type": "H"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [5]]], "op": {"type": "H"}}, {"args": [["q", [1]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [0]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [1]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [0]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "H"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "H"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "H"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [7]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [4]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [7]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [4]], ["q", [8]]], "op": {"type": "CX"}}, {"args": [["q", [4]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [8]]], "op": {"type": "H"}}, {"args": [["q", [7]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [4]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [7]]], "op": {"type": "H"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "H"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "H"}}, {"args": [["q", [1]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [0]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [1]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [0]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"type": "H"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [5]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"type": "H"}}, {"args": [["q", [5]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [2]], ["q", [5]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [5]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [7]]], "op": {"params": ["-0.25"], "type": "Rz"}}, {"args": [["q", [6]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [7]]], "op": {"type": "CX"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [7]]], "op": {"type": "H"}}, {"args": [["q", [6]]], "op": {"params": ["0.25"], "type": "Rz"}}, {"args": [["q", [3]], ["q", [6]]], "op": {"type": "CX"}}, {"args": [["q", [6]]], "op": {"params": ["-0.25"], "type": "Rz"}}], "created_qubits": [], "discarded_qubits": [], "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]], [["q", [2]], ["q", [2]]], [["q", [3]], ["q", [3]]], [["q", [4]], ["q", [4]]], [["q", [5]], ["q", [5]]], [["q", [6]], ["q", [6]]], [["q", [7]], ["q", [7]]], [["q", [8]], ["q", [8]]]], "phase": "0.0", "qubits": [["q", [0]], ["q", [1]], ["q", [2]], ["q", [3]], ["q", [4]], ["q", [5]], ["q", [6]], ["q", [7]], ["q", [8]]]} \ No newline at end of file From bfdd86b470f30d5369190845801fa7abfafb73de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Tue, 19 Sep 2023 11:29:24 +0200 Subject: [PATCH 12/14] feat: Better circuit iterators and misc API (#96) - Reworks the circuit unit iterators, with a bespoke iterator instead of Vecs. - The previous `units` is now `linear_units`. - Also adds `units`, `nonlinear_units`, `qubits`. - The `Units` iterators is more generic than needed here (it supports arbitrary nodes and directions), since it's also used on #100. - Adds `Circuit::qubit_count`, `Circuit::circuit_signature` - Reorganizes the `Circuit` trait, since the blanket impl means we can just default-implement everything. - Adds more tests Fixes #87 and implements #86 ~I plan to modify `Units` for #85, but this is enough noise for now.~ (Edit: I brought those changes here) --------- Co-authored-by: Alan Lawrence --- src/circuit.rs | 201 ++++++++++++++++---------------- src/circuit/command.rs | 24 +++- src/circuit/units.rs | 222 ++++++++++++++++++++++++++++++++++++ src/circuit/units/filter.rs | 71 ++++++++++++ src/json/encoder.rs | 2 +- src/json/tests.rs | 2 +- 6 files changed, 411 insertions(+), 111 deletions(-) create mode 100644 src/circuit/units.rs create mode 100644 src/circuit/units/filter.rs diff --git a/src/circuit.rs b/src/circuit.rs index 40fca617..d3019a9f 100644 --- a/src/circuit.rs +++ b/src/circuit.rs @@ -2,153 +2,137 @@ pub mod command; mod hash; +mod units; +pub use command::{Command, CommandIterator}; pub use hash::CircuitHash; -use self::command::{Command, CommandIterator}; - -use hugr::extension::prelude::QB_T; -use hugr::hugr::{CircuitUnit, NodeType}; -use hugr::ops::OpTrait; +use hugr::hugr::NodeType; use hugr::HugrView; pub use hugr::ops::OpType; -use hugr::types::TypeBound; +use hugr::types::FunctionType; pub use hugr::types::{EdgeKind, Signature, Type, TypeRow}; pub use hugr::{Node, Port, Wire}; +use self::units::{filter, FilteredUnits, Units}; + /// An object behaving like a quantum circuit. // // TODO: More methods: // - other_{in,out}puts (for non-linear i/o + const inputs)? // - Vertical slice iterator -// - Gate count map // - Depth pub trait Circuit: HugrView { - /// An iterator over the commands in the circuit. - type Commands<'a>: Iterator - where - Self: 'a; - - /// An iterator over the commands applied to an unit. - type UnitCommands: Iterator; - /// Return the name of the circuit - fn name(&self) -> Option<&str>; - - /// Get the linear inputs of the circuit and their types. - fn units(&self) -> Vec<(CircuitUnit, Type)>; + #[inline] + fn name(&self) -> Option<&str> { + let meta = self.get_metadata(self.root()).as_object()?; + meta.get("name")?.as_str() + } - /// Returns the units corresponding to qubits inputs to the circuit. + /// Returns the function type of the circuit. + /// + /// Equivalent to [`HugrView::get_function_type`]. #[inline] - fn qubits(&self) -> Vec { - self.units() - .iter() - .filter(|(_, typ)| typ == &QB_T) - .map(|(unit, _)| *unit) - .collect() + fn circuit_signature(&self) -> &FunctionType { + self.get_function_type() + .expect("Circuit has no function type") } /// Returns the input node to the circuit. - fn input(&self) -> Node; + #[inline] + fn input(&self) -> Node { + self.get_io(self.root()).expect("Circuit has no input node")[0] + } /// Returns the output node to the circuit. - fn output(&self) -> Node; - - /// Given a linear port in a node, returns the corresponding port on the other side of the node (if any). - fn follow_linear_port(&self, node: Node, port: Port) -> Option; - - /// Returns all the commands in the circuit, in some topological order. - /// - /// Ignores the Input and Output nodes. - fn commands(&self) -> Self::Commands<'_>; - - /// Returns all the commands applied to the given unit, in order. - fn unit_commands(&self) -> Self::UnitCommands; - - /// Returns the [`NodeType`] of a command. - fn command_nodetype(&self, command: &Command) -> &NodeType { - self.get_nodetype(command.node()) + #[inline] + fn output(&self) -> Node { + self.get_io(self.root()) + .expect("Circuit has no output node")[1] } - /// Returns the [`OpType`] of a command. - fn command_optype(&self, command: &Command) -> &OpType { - self.get_optype(command.node()) + /// The number of quantum gates in the circuit. + #[inline] + fn num_gates(&self) -> usize + where + Self: Sized, + { + // TODO: Implement discern quantum gates in the commands iterator. + self.children(self.root()).count() - 2 } - /// The number of gates in the circuit. - fn num_gates(&self) -> usize; -} - -impl Circuit for T -where - T: HugrView, -{ - type Commands<'a> = CommandIterator<'a, T> where Self: 'a; - type UnitCommands = std::iter::Empty; - + /// Count the number of qubits in the circuit. #[inline] - fn name(&self) -> Option<&str> { - let meta = self.get_metadata(self.root()).as_object()?; - meta.get("name")?.as_str() + fn qubit_count(&self) -> usize + where + Self: Sized, + { + self.qubits().count() } + /// Get the input units of the circuit and their types. #[inline] - fn units(&self) -> Vec<(CircuitUnit, Type)> { - let root = self.root(); - let optype = self.get_optype(root); - optype - .signature() - .input_types() - .iter() - .filter(|&typ| !TypeBound::Copyable.contains(typ.least_upper_bound())) - .enumerate() - .map(|(i, typ)| (i.into(), typ.clone())) - .collect() + fn units(&self) -> Units + where + Self: Sized, + { + Units::new_circ_input(self) } - fn follow_linear_port(&self, node: Node, port: Port) -> Option { - let optype = self.get_optype(node); - if !optype.port_kind(port)?.is_linear() { - return None; - } - // TODO: We assume the linear data uses the same port offsets on both sides of the node. - // In the future we may want to have a more general mechanism to handle this. - let other_port = Port::new(port.direction().reverse(), port.index()); - if optype.port_kind(other_port) == optype.port_kind(port) { - Some(other_port) - } else { - None - } + /// Get the linear input units of the circuit and their types. + #[inline] + fn linear_units(&self) -> FilteredUnits + where + Self: Sized, + { + self.units().filter_units::() } - fn commands(&self) -> Self::Commands<'_> { - // Traverse the circuit in topological order. - CommandIterator::new(self) + /// Get the non-linear input units of the circuit and their types. + #[inline] + fn nonlinear_units(&self) -> FilteredUnits + where + Self: Sized, + { + self.units().filter_units::() } - fn unit_commands(&self) -> Self::UnitCommands { - // TODO Can we associate linear i/o with the corresponding unit without - // doing the full toposort? - unimplemented!() + /// Returns the units corresponding to qubits inputs to the circuit. + #[inline] + fn qubits(&self) -> FilteredUnits + where + Self: Sized, + { + self.units().filter_units::() } + /// Returns all the commands in the circuit, in some topological order. + /// + /// Ignores the Input and Output nodes. #[inline] - fn input(&self) -> Node { - return self.children(self.root()).next().unwrap(); + fn commands(&self) -> CommandIterator<'_, Self> + where + Self: Sized, + { + // Traverse the circuit in topological order. + CommandIterator::new(self) } - #[inline] - fn output(&self) -> Node { - return self.children(self.root()).nth(1).unwrap(); + /// Returns the [`NodeType`] of a command. + fn command_nodetype(&self, command: &Command) -> &NodeType { + self.get_nodetype(command.node()) } - #[inline] - fn num_gates(&self) -> usize { - self.children(self.root()).count() - 2 + /// Returns the [`OpType`] of a command. + fn command_optype(&self, command: &Command) -> &OpType { + self.get_optype(command.node()) } } +impl Circuit for T where T: HugrView {} + #[cfg(test)] mod tests { use hugr::Hugr; @@ -159,11 +143,12 @@ mod tests { load_tk1_json_str( r#"{ "phase": "0", - "bits": [], + "bits": [["c", [0]]], "qubits": [["q", [0]], ["q", [1]]], "commands": [ {"args": [["q", [0]]], "op": {"type": "H"}}, - {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}} + {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}, + {"args": [["q", [1]]], "op": {"type": "X"}} ], "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]]] }"#, @@ -172,8 +157,18 @@ mod tests { } #[test] - fn test_num_gates() { + fn test_circuit_properties() { let circ = test_circuit(); - assert_eq!(circ.num_gates(), 2); + + assert_eq!(circ.name(), None); + assert_eq!(circ.circuit_signature().input.len(), 3); + assert_eq!(circ.circuit_signature().output.len(), 3); + assert_eq!(circ.qubit_count(), 2); + assert_eq!(circ.num_gates(), 3); + + assert_eq!(circ.units().count(), 3); + assert_eq!(circ.nonlinear_units().count(), 0); + assert_eq!(circ.linear_units().count(), 3); + assert_eq!(circ.qubits().count(), 2); } } diff --git a/src/circuit/command.rs b/src/circuit/command.rs index 570c8bb2..a9dae464 100644 --- a/src/circuit/command.rs +++ b/src/circuit/command.rs @@ -67,11 +67,8 @@ where .node_outputs(circ.input()) .map(|port| Wire::new(circ.input(), port)); let wire_unit = input_node_wires - .zip(circ.units().iter()) - .filter_map(|(wire, (unit, _))| match unit { - CircuitUnit::Linear(i) => Some((wire, *i)), - _ => None, - }) + .zip(circ.linear_units()) + .map(|(wire, (linear_unit, _, _))| (wire, linear_unit)) .collect(); let nodes = petgraph::algo::toposort(&circ.as_petgraph(), None).unwrap(); @@ -111,7 +108,7 @@ where // Get the unit corresponding to a wire, or return a wire Unit. match self.wire_unit.remove(&wire) { Some(unit) => { - if let Some(new_port) = self.circ.follow_linear_port(node, port) { + if let Some(new_port) = self.follow_linear_port(node, port) { self.wire_unit.insert(Wire::new(node, new_port), unit); } Some(CircuitUnit::Linear(unit)) @@ -150,6 +147,21 @@ where outputs, }) } + + fn follow_linear_port(&self, node: Node, port: Port) -> Option { + let optype = self.circ.get_optype(node); + if !optype.port_kind(port)?.is_linear() { + return None; + } + // TODO: We assume the linear data uses the same port offsets on both sides of the node. + // In the future we may want to have a more general mechanism to handle this. + let other_port = Port::new(port.direction().reverse(), port.index()); + if optype.port_kind(other_port) == optype.port_kind(port) { + Some(other_port) + } else { + None + } + } } impl<'circ, Circ> Iterator for CommandIterator<'circ, Circ> diff --git a/src/circuit/units.rs b/src/circuit/units.rs new file mode 100644 index 00000000..ffb96ab2 --- /dev/null +++ b/src/circuit/units.rs @@ -0,0 +1,222 @@ +//! Iterators over the units of a circuit. +//! +//! A [`CircuitUnit`] can either be a unique identifier for a linear unit (a +//! [`LinearUnit`]), or a wire between two HUGR nodes (a [`Wire`]). +//! +//! Linear units are tracked along the circuit, so values like qubits that are +//! used as input to a gate can continue to be tracked after the gate is +//! applied. +//! +//! The [`Units`] iterator defined in this module yields all the input or output +//! units of a node. See [`Circuit::units`] and [`Command`] for more details. +//! +//! [`Command`]: super::command::Command + +pub mod filter; +pub use filter::FilteredUnits; + +use std::iter::FusedIterator; + +use hugr::hugr::CircuitUnit; +use hugr::ops::OpTrait; +use hugr::types::{EdgeKind, Type, TypeBound, TypeRow}; +use hugr::{Direction, Node, Port, Wire}; + +use self::filter::UnitFilter; + +use super::Circuit; + +/// A linear unit id, used in [`CircuitUnit::Linear`]. +// TODO: Add this to hugr? +pub type LinearUnit = usize; + +/// An iterator over the units in the input or output boundary of a [Node]. +#[derive(Clone, Debug)] +pub struct Units
    { + /// The node of the circuit. + node: Node, + /// The direction of the boundary. + direction: Direction, + /// The types of the boundary. + types: TypeRow, + /// The current index in the type row. + pos: usize, + /// The number of linear units yielded so far. + linear_count: usize, + /// A pre-set assignment of units that maps linear ports to + /// [`CircuitUnit::Linear`] ids. + /// + /// The default type is `()`, which assigns new linear ids sequentially. + unit_labeller: UL, +} + +impl Units { + /// Create a new iterator over the input units of a circuit. + /// + /// This iterator will yield all units originating from the circuit's input + /// node. + #[inline] + pub(super) fn new_circ_input(circuit: &impl Circuit) -> Self { + Self::new( + circuit, + circuit.input(), + Direction::Outgoing, + DefaultUnitLabeller, + ) + } +} + +impl
      Units
        +where + UL: UnitLabeller, +{ + /// Apply a [`UnitFilter`] to the iterator's output, possibly unwrapping the + /// [`CircuitUnit`] into either a linear unit or a wire. + pub fn filter_units(self) -> FilteredUnits { + self.filter_map(F::accept) + } + + /// Create a new iterator over the units of a node. + // + // Note that this ignores any incoming linear unit labels, and just assigns + // new unit ids sequentially. + #[inline] + #[allow(unused)] + pub(super) fn new( + circuit: &impl Circuit, + node: Node, + direction: Direction, + unit_labeller: UL, + ) -> Self { + Self { + node, + direction, + types: Self::init_types(circuit, node, direction), + pos: 0, + linear_count: 0, + unit_labeller, + } + } + + /// Initialize the boundary types. + /// + /// We use a [`TypeRow`] to avoid allocating for simple boundaries, but if + /// any static port is present we create a new owned [`TypeRow`] with them included. + // + // TODO: This is quite hacky, but we need it to accept Const static inputs. + // We should revisit it once this is reworked on the HUGR side. + fn init_types(circuit: &impl Circuit, node: Node, direction: Direction) -> TypeRow { + let optype = circuit.get_optype(node); + let sig = optype.signature(); + let mut types = match direction { + Direction::Outgoing => sig.output, + Direction::Incoming => sig.input, + }; + if let Some(other) = optype.static_input() { + if direction == Direction::Incoming { + types.to_mut().push(other); + } + } + if let Some(EdgeKind::Static(other)) = optype.other_port(direction) { + types.to_mut().push(other); + } + types + } + + /// Construct an output value to yield. + /// + /// Calls [`UnitLabeller::assign_linear`] to assign a linear unit id to the linear ports. + /// Non-linear ports are assigned [`CircuitUnit::Wire`]s via [`UnitLabeller::assign_wire`]. + #[inline] + fn make_value(&self, typ: &Type, port: Port) -> Option<(CircuitUnit, Port, Type)> { + let unit = if type_is_linear(typ) { + let linear_unit = + self.unit_labeller + .assign_linear(self.node, port, self.linear_count - 1); + CircuitUnit::Linear(linear_unit) + } else { + let wire = self.unit_labeller.assign_wire(self.node, port)?; + CircuitUnit::Wire(wire) + }; + Some((unit, port, typ.clone())) + } +} + +impl
          Iterator for Units
            +where + UL: UnitLabeller, +{ + type Item = (CircuitUnit, Port, Type); + + #[inline] + fn next(&mut self) -> Option { + loop { + let typ = self.types.get(self.pos)?; + let port = Port::new(self.direction, self.pos); + self.pos += 1; + if type_is_linear(typ) { + self.linear_count += 1; + } + if let Some(val) = self.make_value(typ, port) { + return Some(val); + } + } + } + + fn size_hint(&self) -> (usize, Option) { + let len = self.types.len() - self.pos; + if self.direction == Direction::Outgoing { + (len, Some(len)) + } else { + // Even when yielding every unit, a disconnected input non-linear + // port cannot be assigned a `CircuitUnit::Wire` and so it will be + // skipped. + (0, Some(len)) + } + } +} + +impl
              FusedIterator for Units
                where UL: UnitLabeller {} + +/// A trait for assigning linear unit ids and wires to ports of a node. +pub trait UnitLabeller { + /// Assign a linear unit id to an port. + /// + /// # Parameters + /// - node: The node in the circuit. + /// - port: The node's port in the node. + /// - linear_count: The number of linear units yielded so far. + fn assign_linear(&self, node: Node, port: Port, linear_count: usize) -> LinearUnit; + + /// Assign a wire to a port, if possible. + /// + /// # Parameters + /// - node: The node in the circuit. + /// - port: The node's port in the node. + fn assign_wire(&self, node: Node, port: Port) -> Option; +} + +/// The default [`UnitLabeller`] that assigns new linear unit ids +/// sequentially, and only assigns wires to an outgoing ports (as input ports +/// require querying the HUGR for their neighbours). +#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] +pub struct DefaultUnitLabeller; + +impl UnitLabeller for DefaultUnitLabeller { + #[inline] + fn assign_linear(&self, _: Node, _: Port, linear_count: usize) -> LinearUnit { + linear_count + } + + #[inline] + fn assign_wire(&self, node: Node, port: Port) -> Option { + match port.direction() { + Direction::Incoming => None, + Direction::Outgoing => Some(Wire::new(node, port)), + } + } +} + +fn type_is_linear(typ: &Type) -> bool { + !TypeBound::Copyable.contains(typ.least_upper_bound()) +} diff --git a/src/circuit/units/filter.rs b/src/circuit/units/filter.rs new file mode 100644 index 00000000..fe485704 --- /dev/null +++ b/src/circuit/units/filter.rs @@ -0,0 +1,71 @@ +//! Filters for the [`Units`] iterator that unwrap the yielded units when +//! possible. + +use hugr::extension::prelude; +use hugr::hugr::CircuitUnit; +use hugr::types::Type; +use hugr::{Port, Wire}; + +use super::{DefaultUnitLabeller, LinearUnit, Units}; + +/// A filtered units iterator +pub type FilteredUnits = std::iter::FilterMap< + Units
                  , + fn((CircuitUnit, Port, Type)) -> Option<::Item>, +>; + +/// A filter over a [`Units`] iterator. +pub trait UnitFilter { + type Item; + + /// Filter a [`Units`] iterator item, and unwrap it into a `Self::Item` if + /// it's accepted. + fn accept(item: (CircuitUnit, Port, Type)) -> Option; +} + +/// A unit filter that accepts linear units. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] +pub struct Linear; + +/// A unit filter that accepts qubits, a subset of [`Linear`]. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] +pub struct Qubits; + +/// A unit filter that accepts non-linear units. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] +pub struct NonLinear; + +impl UnitFilter for Linear { + type Item = (LinearUnit, Port, Type); + + fn accept(item: (CircuitUnit, Port, Type)) -> Option { + match item { + (CircuitUnit::Linear(unit), port, typ) => Some((unit, port, typ)), + _ => None, + } + } +} + +impl UnitFilter for Qubits { + type Item = (LinearUnit, Port, Type); + + fn accept(item: (CircuitUnit, Port, Type)) -> Option { + match item { + (CircuitUnit::Linear(unit), port, typ) if typ == prelude::QB_T => { + Some((unit, port, typ)) + } + _ => None, + } + } +} + +impl UnitFilter for NonLinear { + type Item = (Wire, Port, Type); + + fn accept(item: (CircuitUnit, Port, Type)) -> Option { + match item { + (CircuitUnit::Wire(wire), port, typ) => Some((wire, port, typ)), + _ => None, + } + } +} diff --git a/src/json/encoder.rs b/src/json/encoder.rs index e087d147..ed11985e 100644 --- a/src/json/encoder.rs +++ b/src/json/encoder.rs @@ -49,7 +49,7 @@ impl JsonEncoder { // TODO Throw an error on non-recognized unit types, or just ignore? let mut bit_units = HashMap::new(); let mut qubit_units = HashMap::new(); - for (unit, ty) in circ.units() { + for (unit, _, ty) in circ.units() { if ty == QB_T { let index = vec![qubit_units.len() as i64]; let reg = circuit_json::Register("q".to_string(), index); diff --git a/src/json/tests.rs b/src/json/tests.rs index 7261c302..76f7cb9c 100644 --- a/src/json/tests.rs +++ b/src/json/tests.rs @@ -61,7 +61,7 @@ fn json_roundtrip(#[case] circ_s: &str, #[case] num_commands: usize, #[case] num let hugr: Hugr = ser.clone().decode().unwrap(); let circ: SiblingGraph<'_, DfgID> = SiblingGraph::new(&hugr, hugr.root()); - assert_eq!(circ.qubits().len(), num_qubits); + assert_eq!(circ.qubit_count(), num_qubits); let reser: SerialCircuit = SerialCircuit::encode(&circ).unwrap(); compare_serial_circs(&ser, &reser); From 41eaf727fec889a1bb17509aecd58d3fef496aaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Tue, 19 Sep 2023 18:06:37 +0200 Subject: [PATCH 13/14] feat: python errors and some pyrs helpers (#114) --- Cargo.toml | 2 +- DEVELOPMENT.md | 8 +++++ pyrs/src/circuit.rs | 54 +++++++++++++++++++++++++++++++++ pyrs/src/lib.rs | 55 +++++++++++++++++++++++++++++----- pyrs/test/test_portmatching.py | 22 +++++++------- src/json.rs | 18 +++++++++++ src/json/decoder.rs | 7 +++-- src/ops.rs | 6 ++++ src/portmatching.rs | 2 +- src/portmatching/pattern.rs | 17 ++++++++++- src/portmatching/pyo3.rs | 34 ++++++++++----------- taso-optimiser/src/main.rs | 2 +- 12 files changed, 184 insertions(+), 43 deletions(-) create mode 100644 pyrs/src/circuit.rs diff --git a/Cargo.toml b/Cargo.toml index 81ba552c..bc32b1a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,7 +71,7 @@ members = ["pyrs", "compile-matcher", "taso-optimiser"] [workspace.dependencies] -quantinuum-hugr = { git = "https://github.com/CQCL-DEV/hugr", rev = "bc9692b" } +quantinuum-hugr = { git = "https://github.com/CQCL-DEV/hugr", rev = "660fef6e" } portgraph = { version = "0.9", features = ["serde"] } pyo3 = { version = "0.19" } itertools = { version = "0.11.0" } diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 088a9a6d..a8025bec 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -79,6 +79,14 @@ stable available. cargo +nightly miri test ``` +To run the python tests, run: + +```bash +cd pyrs +maturin develop +pytest +``` + ## 💅 Coding Style The rustfmt tool is used to enforce a consistent rust coding style. The CI will fail if the code is not formatted correctly. Python code is formatted with black. diff --git a/pyrs/src/circuit.rs b/pyrs/src/circuit.rs new file mode 100644 index 00000000..850278ff --- /dev/null +++ b/pyrs/src/circuit.rs @@ -0,0 +1,54 @@ +//! Circuit-related functionality and utilities. +#![allow(unused)] + +use pyo3::prelude::*; + +use hugr::{Hugr, HugrView}; +use tket2::extension::REGISTRY; +use tket2::json::TKETDecode; +use tket_json_rs::circuit_json::SerialCircuit; + +/// Apply a fallible function expecting a hugr on a pytket circuit. +pub fn try_with_hugr(circ: Py, f: F) -> PyResult +where + E: Into, + F: FnOnce(Hugr) -> Result, +{ + let hugr = SerialCircuit::_from_tket1(circ).decode()?; + (f)(hugr).map_err(|e| e.into()) +} + +/// Apply a function expecting a hugr on a pytket circuit. +pub fn with_hugr T>(circ: Py, f: F) -> PyResult { + try_with_hugr(circ, |hugr| Ok::((f)(hugr))) +} + +/// Apply a hugr-to-hugr function on a pytket circuit, and return the modified circuit. +pub fn try_update_hugr, F: FnOnce(Hugr) -> Result>( + circ: Py, + f: F, +) -> PyResult> { + let hugr = try_with_hugr(circ, f)?; + SerialCircuit::encode(&hugr)?.to_tket1() +} + +/// Apply a hugr-to-hugr function on a pytket circuit, and return the modified circuit. +pub fn update_hugr Hugr>(circ: Py, f: F) -> PyResult> { + let hugr = with_hugr(circ, f)?; + SerialCircuit::encode(&hugr)?.to_tket1() +} + +#[pyfunction] +pub fn validate_hugr(c: Py) -> PyResult<()> { + try_with_hugr(c, |hugr| hugr.validate(®ISTRY)) +} + +#[pyfunction] +pub fn to_hugr_dot(c: Py) -> PyResult { + with_hugr(c, |hugr| hugr.dot_string()) +} + +#[pyfunction] +pub fn to_hugr(c: Py) -> PyResult { + with_hugr(c, |hugr| hugr) +} diff --git a/pyrs/src/lib.rs b/pyrs/src/lib.rs index 085a1434..8d2ad205 100644 --- a/pyrs/src/lib.rs +++ b/pyrs/src/lib.rs @@ -1,17 +1,56 @@ +//! Python bindings for TKET2. +#![warn(missing_docs)] + +mod circuit; + use pyo3::prelude::*; -use tket2::portmatching::{CircuitPattern, PatternMatcher}; /// The Python bindings to TKET2. #[pymodule] fn pyrs(py: Python, m: &PyModule) -> PyResult<()> { - add_patterns_module(py, m)?; + add_circuit_module(py, m)?; + add_pattern_module(py, m)?; Ok(()) } -fn add_patterns_module(py: Python, parent: &PyModule) -> PyResult<()> { - let m = PyModule::new(py, "patterns")?; - m.add_class::()?; - m.add_class::()?; - parent.add_submodule(m)?; - Ok(()) +/// circuit module +fn add_circuit_module(py: Python, parent: &PyModule) -> PyResult<()> { + let m = PyModule::new(py, "circuit")?; + m.add_class::()?; + m.add_class::()?; + + m.add("HugrError", py.get_type::())?; + m.add("BuildError", py.get_type::())?; + m.add( + "ValidationError", + py.get_type::(), + )?; + m.add( + "HUGRSerializationError", + py.get_type::(), + )?; + m.add( + "OpConvertError", + py.get_type::(), + )?; + + parent.add_submodule(m) +} + +/// portmatching module +fn add_pattern_module(py: Python, parent: &PyModule) -> PyResult<()> { + let m = PyModule::new(py, "pattern")?; + m.add_class::()?; + m.add_class::()?; + + m.add( + "InvalidPatternError", + py.get_type::(), + )?; + m.add( + "InvalidReplacementError", + py.get_type::(), + )?; + + parent.add_submodule(m) } diff --git a/pyrs/test/test_portmatching.py b/pyrs/test/test_portmatching.py index 88acc851..2f4828bf 100644 --- a/pyrs/test/test_portmatching.py +++ b/pyrs/test/test_portmatching.py @@ -1,24 +1,24 @@ from pytket import Circuit from pytket.qasm import circuit_from_qasm -from pyrs.pyrs import patterns +from pyrs.pyrs import pattern def test_simple_matching(): """ a simple circuit matching test """ c = Circuit(2).CX(0, 1).H(1).CX(0, 1) - p1 = patterns.CircuitPattern(Circuit(2).CX(0, 1).H(1)) - p2 = patterns.CircuitPattern(Circuit(2).H(0).CX(1, 0)) + p1 = pattern.CircuitPattern(Circuit(2).CX(0, 1).H(1)) + p2 = pattern.CircuitPattern(Circuit(2).H(0).CX(1, 0)) - matcher = patterns.PatternMatcher(iter([p1, p2])) + matcher = pattern.PatternMatcher(iter([p1, p2])) assert len(matcher.find_matches(c)) == 2 def test_non_convex_pattern(): """ two-qubit circuits can't match three-qb ones """ - p1 = patterns.CircuitPattern(Circuit(3).CX(0, 1).CX(1, 2)) - matcher = patterns.PatternMatcher(iter([p1])) + p1 = pattern.CircuitPattern(Circuit(3).CX(0, 1).CX(1, 2)) + matcher = pattern.PatternMatcher(iter([p1])) c = Circuit(2).CX(0, 1).CX(1, 0) assert len(matcher.find_matches(c)) == 0 @@ -34,11 +34,11 @@ def test_larger_matching(): """ a larger crafted circuit with matches WIP """ c = circuit_from_qasm("test/test_files/circ.qasm") - p1 = patterns.CircuitPattern(Circuit(2).CX(0, 1).H(1)) - p2 = patterns.CircuitPattern(Circuit(2).H(0).CX(1, 0)) - p3 = patterns.CircuitPattern(Circuit(2).CX(0, 1).CX(1, 0)) - p4 = patterns.CircuitPattern(Circuit(3).CX(0, 1).CX(1, 2)) + p1 = pattern.CircuitPattern(Circuit(2).CX(0, 1).H(1)) + p2 = pattern.CircuitPattern(Circuit(2).H(0).CX(1, 0)) + p3 = pattern.CircuitPattern(Circuit(2).CX(0, 1).CX(1, 0)) + p4 = pattern.CircuitPattern(Circuit(3).CX(0, 1).CX(1, 2)) - matcher = patterns.PatternMatcher(iter([p1, p2, p3, p4])) + matcher = pattern.PatternMatcher(iter([p1, p2, p3, p4])) assert len(matcher.find_matches(c)) == 6 \ No newline at end of file diff --git a/src/json.rs b/src/json.rs index d92c0892..f197918f 100644 --- a/src/json.rs +++ b/src/json.rs @@ -7,6 +7,9 @@ pub mod op; #[cfg(test)] mod tests; +#[cfg(feature = "pyo3")] +use pyo3::{create_exception, exceptions::PyException, PyErr}; + use std::path::Path; use std::{fs, io}; @@ -85,6 +88,21 @@ pub enum OpConvertError { NonSerializableInputs(OpType), } +#[cfg(feature = "pyo3")] +create_exception!( + pyrs, + PyOpConvertError, + PyException, + "Error type for conversion between tket2's `Op` and `OpType`" +); + +#[cfg(feature = "pyo3")] +impl From for PyErr { + fn from(err: OpConvertError) -> Self { + PyOpConvertError::new_err(err.to_string()) + } +} + /// Load a TKET1 circuit from a JSON file. pub fn load_tk1_json_file(path: impl AsRef) -> Result { let file = fs::File::open(path)?; diff --git a/src/json/decoder.rs b/src/json/decoder.rs index 1d5432c3..19c4cd0b 100644 --- a/src/json/decoder.rs +++ b/src/json/decoder.rs @@ -6,7 +6,8 @@ use std::hash::{Hash, Hasher}; use std::mem; use hugr::builder::{CircuitBuilder, Container, DFGBuilder, Dataflow, DataflowHugr}; -use hugr::extension::prelude::QB_T; +use hugr::extension::prelude::{PRELUDE_ID, QB_T}; +use hugr::extension::ExtensionSet; use hugr::hugr::CircuitUnit; use hugr::ops::Const; @@ -143,7 +144,9 @@ impl JsonDecoder { Some(c) => { let const_type = FLOAT64_TYPE; let const_op = Const::new(c, const_type).unwrap(); - self.hugr.add_load_const(const_op).unwrap() + self.hugr + .add_load_const(const_op, ExtensionSet::singleton(&PRELUDE_ID)) + .unwrap() } None => { // store string in custom op. diff --git a/src/ops.rs b/src/ops.rs index a57274b0..1ed64032 100644 --- a/src/ops.rs +++ b/src/ops.rs @@ -23,6 +23,9 @@ use strum::IntoEnumIterator; use strum_macros::{Display, EnumIter, EnumString, IntoStaticStr}; use thiserror::Error; +#[cfg(feature = "pyo3")] +use pyo3::pyclass; + /// Name of tket 2 extension. pub const EXTENSION_ID: ExtensionId = ExtensionId::new_unchecked("quantum.tket2"); @@ -41,6 +44,7 @@ pub const EXTENSION_ID: ExtensionId = ExtensionId::new_unchecked("quantum.tket2" IntoStaticStr, EnumString, )] +#[cfg_attr(feature = "pyo3", pyclass)] #[allow(missing_docs)] /// Simple enum of tket 2 quantum operations. pub enum T2Op { @@ -62,7 +66,9 @@ pub enum T2Op { AngleAdd, TK1, } + #[derive(Clone, Copy, Debug, Serialize, Deserialize, EnumIter, Display, PartialEq, PartialOrd)] +#[cfg_attr(feature = "pyo3", pyclass)] #[allow(missing_docs)] /// Simple enum representation of Pauli matrices. pub enum Pauli { diff --git a/src/portmatching.rs b/src/portmatching.rs index 7875ae8d..6cf40f42 100644 --- a/src/portmatching.rs +++ b/src/portmatching.rs @@ -3,7 +3,7 @@ pub mod matcher; pub mod pattern; #[cfg(feature = "pyo3")] -mod pyo3; +pub mod pyo3; pub use matcher::{PatternMatch, PatternMatcher}; pub use pattern::CircuitPattern; diff --git a/src/portmatching/pattern.rs b/src/portmatching/pattern.rs index 14a825f1..e54374d0 100644 --- a/src/portmatching/pattern.rs +++ b/src/portmatching/pattern.rs @@ -13,7 +13,7 @@ use super::{ use crate::circuit::Circuit; #[cfg(feature = "pyo3")] -use pyo3::prelude::*; +use pyo3::{create_exception, exceptions::PyException, pyclass, PyErr}; /// A pattern that match a circuit exactly #[cfg_attr(feature = "pyo3", pyclass)] @@ -119,6 +119,21 @@ impl From for InvalidPattern { } } +#[cfg(feature = "pyo3")] +create_exception!( + pyrs, + PyInvalidPatternError, + PyException, + "Invalid circuit pattern" +); + +#[cfg(feature = "pyo3")] +impl From for PyErr { + fn from(err: InvalidPattern) -> Self { + PyInvalidPatternError::new_err(err.to_string()) + } +} + #[cfg(test)] mod tests { use hugr::Hugr; diff --git a/src/portmatching/pyo3.rs b/src/portmatching/pyo3.rs index c252814c..30d213a9 100644 --- a/src/portmatching/pyo3.rs +++ b/src/portmatching/pyo3.rs @@ -3,12 +3,13 @@ use std::fmt; use derive_more::{From, Into}; +use hugr::hugr::views::sibling_subgraph::PyInvalidReplacementError; use hugr::hugr::views::{DescendantsGraph, HierarchyView}; use hugr::ops::handle::DfgID; use hugr::{Hugr, HugrView, Port}; use itertools::Itertools; use portmatching::{HashMap, PatternID}; -use pyo3::{create_exception, exceptions::PyException, prelude::*, types::PyIterator}; +use pyo3::{prelude::*, types::PyIterator}; use tket_json_rs::circuit_json::SerialCircuit; use super::{CircuitPattern, PatternMatch, PatternMatcher}; @@ -16,10 +17,6 @@ use crate::circuit::Circuit; use crate::json::TKETDecode; use crate::rewrite::CircuitRewrite; -create_exception!(pyrs, PyValidateError, PyException); -create_exception!(pyrs, PyInvalidReplacement, PyException); -create_exception!(pyrs, PyInvalidPattern, PyException); - #[pymethods] impl CircuitPattern { /// Construct a pattern from a TKET1 circuit @@ -27,8 +24,8 @@ impl CircuitPattern { pub fn py_from_circuit(circ: PyObject) -> PyResult { let hugr = pyobj_as_hugr(circ)?; let circ = hugr_as_view(&hugr); - CircuitPattern::try_from_circuit(&circ) - .map_err(|e| PyInvalidPattern::new_err(e.to_string())) + let pattern = CircuitPattern::try_from_circuit(&circ)?; + Ok(pattern) } /// A string representation of the pattern. @@ -64,7 +61,7 @@ impl PatternMatcher { .map(|m| { let pattern_id = m.pattern_id(); PyPatternMatch::try_from_rust(m, &circ, self).map_err(|e| { - PyInvalidReplacement::new_err(format!( + PyInvalidReplacementError::new_err(format!( "Invalid match for pattern {:?}: {}", pattern_id, e )) @@ -74,7 +71,7 @@ impl PatternMatcher { } } -/// Python equivalent of [`CircuitMatch`]. +/// Python equivalent of [`PatternMatch`]. /// /// A convex pattern match in a circuit, available from Python. /// @@ -86,7 +83,9 @@ impl PatternMatcher { /// over efficiency. It is provided for convenience and not recommended when /// performance is a key concern. /// -/// TODO: can this be a wrapper for a [`CircuitMatch`] instead? +/// TODO: can this be a wrapper for a [`PatternMatch`] instead? +/// +/// [`PatternMatch`]: crate::portmatching::matcher::PatternMatch #[pyclass] #[derive(Debug, Clone)] pub struct PyPatternMatch { @@ -117,7 +116,7 @@ impl PyPatternMatch { } impl PyPatternMatch { - /// Construct a [`PyCircuitMatch`] from a [`PatternMatch`]. + /// Construct a [`PyPatternMatch`] from a [`PatternMatch`]. /// /// Requires references to the circuit and pattern to resolve indices /// into these objects. @@ -132,7 +131,7 @@ impl PyPatternMatch { let node_map: HashMap = pattern .get_match_map(root.0, circ) - .ok_or_else(|| PyInvalidReplacement::new_err("Invalid match"))? + .ok_or_else(|| PyInvalidReplacementError::new_err("Invalid match"))? .into_iter() .map(|(p, c)| (Node(p), Node(c))) .collect(); @@ -159,6 +158,7 @@ impl PyPatternMatch { }) } + /// Convert the pattern into a [`CircuitRewrite`]. pub fn to_rewrite(&self, circ: PyObject, replacement: PyObject) -> PyResult { let hugr = pyobj_as_hugr(circ)?; let circ = hugr_as_view(&hugr); @@ -168,7 +168,7 @@ impl PyPatternMatch { .map(|p| p.iter().map(|&(n, p)| (n.0, p)).collect()) .collect(); let outputs = self.outputs.iter().map(|&(n, p)| (n.0, p)).collect(); - PatternMatch::try_from_io( + let rewrite = PatternMatch::try_from_io( self.root.0, PatternID(self.pattern_id), &circ, @@ -176,8 +176,8 @@ impl PyPatternMatch { outputs, ) .expect("Invalid PyCircuitMatch object") - .to_rewrite(&hugr, pyobj_as_hugr(replacement)?) - .map_err(|e| PyInvalidReplacement::new_err(e.to_string())) + .to_rewrite(&hugr, pyobj_as_hugr(replacement)?)?; + Ok(rewrite) } } @@ -204,9 +204,7 @@ impl Node { fn pyobj_as_hugr(circ: PyObject) -> PyResult { let ser_c = SerialCircuit::_from_tket1(circ); - let hugr: Hugr = ser_c - .decode() - .map_err(|e| PyValidateError::new_err(e.to_string()))?; + let hugr: Hugr = ser_c.decode()?; Ok(hugr) } diff --git a/taso-optimiser/src/main.rs b/taso-optimiser/src/main.rs index 5cc0ca40..f73bd12d 100644 --- a/taso-optimiser/src/main.rs +++ b/taso-optimiser/src/main.rs @@ -10,7 +10,7 @@ use tket_json_rs::circuit_json::SerialCircuit; /// Optimise circuits using Quartz-generated ECCs. /// -/// Quartz: https://github.com/quantum-compiler/quartz +/// Quartz: #[derive(Parser, Debug)] #[clap(version = "1.0", long_about = None)] #[clap(about = "Optimise circuits using Quartz-generated ECCs.")] From f37ebb928cb73491bdcf16f58493e1d34ccc32b6 Mon Sep 17 00:00:00 2001 From: Seyon Sivarajah Date: Thu, 7 Sep 2023 17:03:58 +0100 Subject: [PATCH 14/14] feat: add CZ op --- src/json/op.rs | 2 ++ src/ops.rs | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/json/op.rs b/src/json/op.rs index ff1d06c3..5ffcf3e7 100644 --- a/src/json/op.rs +++ b/src/json/op.rs @@ -188,6 +188,7 @@ impl From<&JsonOp> for OpType { JsonOpType::PhasedX => T2Op::PhasedX.into(), JsonOpType::ZZMax => T2Op::ZZMax.into(), JsonOpType::ZZPhase => T2Op::ZZPhase.into(), + JsonOpType::CZ => T2Op::CZ.into(), JsonOpType::noop => LeafOp::Noop { ty: QB_T }.into(), _ => LeafOp::CustomOp(Box::new(json_op.as_opaque_op())).into(), } @@ -228,6 +229,7 @@ impl TryFrom<&OpType> for JsonOp { T2Op::TK1 => JsonOpType::TK1, T2Op::PhasedX => JsonOpType::PhasedX, T2Op::ZZPhase => JsonOpType::ZZPhase, + T2Op::CZ => JsonOpType::CZ, } } else if let LeafOp::CustomOp(b) = leaf { let ext = (*b).as_ref(); diff --git a/src/ops.rs b/src/ops.rs index 1ed64032..86aa19b4 100644 --- a/src/ops.rs +++ b/src/ops.rs @@ -64,6 +64,7 @@ pub enum T2Op { PhasedX, ZZPhase, AngleAdd, + CZ, TK1, } @@ -129,7 +130,7 @@ impl SimpleOpEnum for T2Op { let two_qb_row = type_row![QB_T, QB_T]; match self { H | T | S | X | Y | Z | Tdg | Sdg => FunctionType::new(one_qb_row.clone(), one_qb_row), - CX | ZZMax => FunctionType::new(two_qb_row.clone(), two_qb_row), + CX | ZZMax | CZ => FunctionType::new(two_qb_row.clone(), two_qb_row), ZZPhase => FunctionType::new(type_row![QB_T, QB_T, FLOAT64_TYPE], two_qb_row), Measure => FunctionType::new(one_qb_row, type_row![QB_T, BOOL_T]), RzF64 | RxF64 => FunctionType::new(type_row![QB_T, FLOAT64_TYPE], one_qb_row), @@ -183,7 +184,7 @@ impl T2Op { X | RxF64 => vec![(0, Pauli::X)], T | Z | S | Tdg | Sdg | RzF64 | Measure => vec![(0, Pauli::Z)], CX => vec![(0, Pauli::Z), (1, Pauli::X)], - ZZMax | ZZPhase => vec![(0, Pauli::Z), (1, Pauli::Z)], + ZZMax | ZZPhase | CZ => vec![(0, Pauli::Z), (1, Pauli::Z)], // by default, no commutation _ => vec![], }