From c867a9f5ef084e4e6d7c6f5a641d1dd13f9ce233 Mon Sep 17 00:00:00 2001 From: Michal Bajer Date: Thu, 18 Jul 2024 14:32:22 +0200 Subject: [PATCH] feat(persistence-fabric): rewrite the plugin - Rewrite fabric persistence plugin to match persistence ethereum plugin methods and behavior. - Change DB schema for persistence. - Add tests and sample data to the new plugin. Add them to project CI. Depends on #3298 Signed-off-by: Michal Bajer --- .cspell.json | 1 + .github/workflows/ci.yaml | 141 +- .../CHANGELOG.md | 26 - .../Dockerfile | 14 + .../README.md | 123 +- .../package.json | 55 +- .../src/main/json/openapi.json | 121 +- .../src/main/json/openapi.tpl.json | 121 +- .../src/main/sql/schema.sql | 284 ++- .../typescript/db-client/database.types.ts | 324 +++ .../main/typescript/db-client/db-client.ts | 439 +++- .../generated/openapi/typescript-axios/api.ts | 183 +- .../openapi/typescript-axios/base.ts | 4 +- .../openapi/typescript-axios/common.ts | 4 +- .../openapi/typescript-axios/configuration.ts | 4 +- .../openapi/typescript-axios/index.ts | 4 +- .../typescript/get-runtime-error-cause.ts | 30 - .../src/main/typescript/index.ts | 0 .../src/main/typescript/index.web.ts | 0 .../plugin-factory-persistence-fabric.ts | 2 +- .../typescript/plugin-persistence-fabric.ts | 1052 ++++----- .../src/main/typescript/public-api.ts | 12 +- .../src/main/typescript/types.ts | 59 - .../web-services/status-endpoint-v1.ts | 107 + .../src/test/sql/fabric_blocks.sql | 8 - .../src/test/sql/fabric_blocks_entry.sql | 9 - .../src/test/sql/fabric_transactions.sql | 8 - .../test/sql/fabric_transactions_entry.sql | 24 - .../src/test/sql/insert-test-data.sql | 1981 +++++++++++++++-- ...istence-fabrc-postgresql-db-client.test.ts | 380 ++++ .../persistence-fabric-db-client.test.ts | 236 -- .../persistence-fabric-functional.test.ts | 423 ++++ .../typescript/integration/sample-block.ts | 106 + .../tsconfig.json | 22 +- yarn.lock | 10 +- 35 files changed, 4648 insertions(+), 1669 deletions(-) delete mode 100644 packages/cactus-plugin-persistence-fabric/CHANGELOG.md create mode 100644 packages/cactus-plugin-persistence-fabric/Dockerfile create mode 100644 packages/cactus-plugin-persistence-fabric/src/main/typescript/db-client/database.types.ts delete mode 100644 packages/cactus-plugin-persistence-fabric/src/main/typescript/get-runtime-error-cause.ts mode change 100644 => 100755 packages/cactus-plugin-persistence-fabric/src/main/typescript/index.ts delete mode 100644 packages/cactus-plugin-persistence-fabric/src/main/typescript/index.web.ts mode change 100644 => 100755 packages/cactus-plugin-persistence-fabric/src/main/typescript/public-api.ts delete mode 100644 packages/cactus-plugin-persistence-fabric/src/main/typescript/types.ts create mode 100644 packages/cactus-plugin-persistence-fabric/src/main/typescript/web-services/status-endpoint-v1.ts delete mode 100644 packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_blocks.sql delete mode 100644 packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_blocks_entry.sql delete mode 100644 packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_transactions.sql delete mode 100644 packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_transactions_entry.sql create mode 100644 packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabrc-postgresql-db-client.test.ts delete mode 100644 packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabric-db-client.test.ts create mode 100644 packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabric-functional.test.ts create mode 100644 packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/sample-block.ts diff --git a/.cspell.json b/.cspell.json index da06c927f7..c2c0824bec 100644 --- a/.cspell.json +++ b/.cspell.json @@ -67,6 +67,7 @@ "faio", "fastify", "fidm", + "fkey", "flowdb", "fsouza", "genproto", diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6936f60ef9..bb09b75514 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,7 @@ --- env: NODEJS_VERSION: v18.18.2 - RUN_TRIVY_SCAN: true + RUN_TRIVY_SCAN: true RUN_CODE_COVERAGE: true jobs: ActionLint: @@ -422,8 +422,8 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-1 - path: ./code-coverage-ts/**/ - + path: ./code-coverage-ts/**/ + cactus-cmd-api-server: continue-on-error: false needs: @@ -463,7 +463,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-2 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ - name: build_ncc_bundle run: yarn lerna run build:bundle --scope=@hyperledger/cactus-cmd-api-server @@ -553,7 +553,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-3 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cactus-common: continue-on-error: false @@ -590,7 +590,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-4 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cactus-core: continue-on-error: false @@ -624,7 +624,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-5 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cactus-core-api: continue-on-error: false @@ -653,14 +653,14 @@ jobs: restore-keys: | ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} - run: ./tools/ci.sh - + if: ${{ env.RUN_CODE_COVERAGE == 'true' }} - name: Upload coverage reports as artifacts uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-6 - path: ./code-coverage-ts/**/ - + path: ./code-coverage-ts/**/ + ce-carbon-accounting-backend: continue-on-error: false env: @@ -694,7 +694,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-7 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ce-carbon-accounting-business-logic-plugin: continue-on-error: false @@ -728,7 +728,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-8 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ce-carbon-accounting-frontend: continue-on-error: false @@ -763,7 +763,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-9 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ce-supply-chain-backend: continue-on-error: false env: @@ -799,7 +799,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-10 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ce-supply-chain-business-logic-plugin: continue-on-error: false @@ -833,7 +833,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-11 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ce-supply-chain-frontend: continue-on-error: false @@ -868,7 +868,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-12 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cp-consortium-manual: continue-on-error: false @@ -902,7 +902,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-13 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cp-htlc-coordinator-besu: continue-on-error: false @@ -933,12 +933,12 @@ jobs: restore-keys: | ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} - run: ./tools/ci.sh - if: ${{ env.RUN_CODE_COVERAGE == 'true' }} + if: ${{ env.RUN_CODE_COVERAGE == 'true' }} - name: Upload coverage reports as artifacts uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-14 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cp-htlc-eth-besu: continue-on-error: false @@ -972,7 +972,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-15 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cp-htlc-eth-besu-erc20: continue-on-error: false @@ -1006,7 +1006,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-16 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cp-keychain-aws-sm: continue-on-error: false @@ -1041,7 +1041,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-17 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cp-keychain-azure-kv: continue-on-error: false @@ -1076,7 +1076,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-18 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cpk-google-sm: continue-on-error: false @@ -1111,7 +1111,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-19 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cpk-memory: continue-on-error: false env: @@ -1144,7 +1144,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-20 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cpk-memory-wasm: continue-on-error: false env: @@ -1178,7 +1178,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-21 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cpk-vault: continue-on-error: false env: @@ -1212,7 +1212,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-22 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cpl-connector-aries: continue-on-error: false needs: @@ -1247,7 +1247,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-23 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cpl-connector-besu: permissions: write-all continue-on-error: false @@ -1286,7 +1286,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-24 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ - name: Ensure .tmp Directory Exists run: mkdir -p .tmp/benchmark-results/plugin-ledger-connector-besu/ @@ -1354,7 +1354,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-25 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cpl-connector-corda: continue-on-error: false needs: @@ -1394,8 +1394,8 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-26 - path: ./code-coverage-ts/**/ - + path: ./code-coverage-ts/**/ + cpl-connector-stellar: continue-on-error: false needs: @@ -1432,7 +1432,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-27 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ plc-fabric-0: needs: @@ -1473,7 +1473,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-28 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ plc-fabric-1: needs: @@ -1904,7 +1904,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-29 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cplc-iroha2: continue-on-error: false needs: @@ -1940,7 +1940,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-30 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cplc-ethereum: continue-on-error: false needs: @@ -1975,7 +1975,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-31 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cplc-sawtooth: continue-on-error: false env: @@ -2007,7 +2007,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-32 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cplc-xdai: continue-on-error: false env: @@ -2042,7 +2042,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-33 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cpp-ethereum: continue-on-error: false env: @@ -2075,7 +2075,40 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-34 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ + cpp-fabric: + continue-on-error: false + env: + FULL_BUILD_DISABLED: true + JEST_TEST_PATTERN: packages/cactus-plugin-persistence-fabric/src/test/typescript/(unit|integration|benchmark)/.*/*.test.ts + JEST_TEST_RUNNER_DISABLED: false + JEST_TEST_COVERAGE_PATH: ./code-coverage-ts/cpp-fabric + JEST_TEST_CODE_COVERAGE_ENABLED: true + TAPE_TEST_RUNNER_DISABLED: true + needs: build-dev + runs-on: ubuntu-22.04 + steps: + - name: Use Node.js ${{ env.NODEJS_VERSION }} + uses: actions/setup-node@v4.0.2 + with: + node-version: ${{ env.NODEJS_VERSION }} + - uses: actions/checkout@v4.1.1 + + - id: yarn-cache + name: Restore Yarn Cache + uses: actions/cache@v4.0.1 + with: + key: ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} + path: ./.yarn/ + restore-keys: | + ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} + - run: ./tools/ci.sh + if: ${{ env.RUN_CODE_COVERAGE == 'true' }} + - name: Upload coverage reports as artifacts + uses: actions/upload-artifact@v4.3.3 + with: + name: coverage-reports-cpp-fabric + path: ./code-coverage-ts/**/ cp-object-store-ipfs: continue-on-error: false env: @@ -2109,7 +2142,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-35 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ # cactus-plugin-satp-hermes: # continue-on-error: false # env: @@ -2169,7 +2202,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-36 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ct-api-client: continue-on-error: false env: @@ -2202,7 +2235,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-37 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ct-cmd-api-server: continue-on-error: false @@ -2240,7 +2273,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-38 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ct-geth-ledger: continue-on-error: false env: @@ -2273,7 +2306,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-39 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ctp-consortium-manual: continue-on-error: false env: @@ -2307,7 +2340,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-40 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ctp-htlc-eth-besu: continue-on-error: false env: @@ -2342,7 +2375,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-41 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 @@ -2384,7 +2417,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-42 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ctp-ledger-connector-besu: continue-on-error: false needs: @@ -2407,7 +2440,7 @@ jobs: with: node-version: ${{ env.NODEJS_VERSION }} - uses: actions/checkout@v4.1.1 - + - id: yarn-cache name: Restore Yarn Cache uses: actions/cache@v4.0.1 @@ -2422,7 +2455,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-43 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ctp-ledger-connector-ethereum: continue-on-error: false env: @@ -2454,7 +2487,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-44 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cactus-test-tooling: continue-on-error: false needs: @@ -2492,7 +2525,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-45 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ cactus-verifier-client: continue-on-error: false env: @@ -2525,7 +2558,7 @@ jobs: uses: actions/upload-artifact@v4.3.3 with: name: coverage-reports-46 - path: ./code-coverage-ts/**/ + path: ./code-coverage-ts/**/ ghcr-besu-all-in-one: runs-on: ubuntu-22.04 steps: @@ -2589,7 +2622,7 @@ jobs: - uses: actions/checkout@v4.1.1 - name: ghcr.io/hyperledger/cactus-example-supply-chain-app run: DOCKER_BUILDKIT=1 docker build . -f ./examples/cactus-example-supply-chain-backend/Dockerfile -t cactus-example-supply-chain-app - + ghcr-fabric2-all-in-one: runs-on: ubuntu-22.04 steps: diff --git a/packages/cactus-plugin-persistence-fabric/CHANGELOG.md b/packages/cactus-plugin-persistence-fabric/CHANGELOG.md deleted file mode 100644 index 8dc773cbdc..0000000000 --- a/packages/cactus-plugin-persistence-fabric/CHANGELOG.md +++ /dev/null @@ -1,26 +0,0 @@ -# Change Log - -All notable changes to this project will be documented in this file. -See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - -# [2.0.0-rc.2](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.1...v2.0.0-rc.2) (2024-07-03) - -**Note:** Version bump only for package @hyperledger/cactus-plugin-persistence-fabric - -# [2.0.0-rc.1](https://github.com/hyperledger/cacti/compare/v2.0.0-alpha.2...v2.0.0-rc.1) (2024-06-14) - -### Bug Fixes - -* **persistence-fabric:** hide not critical API ([793f94f](https://github.com/hyperledger/cacti/commit/793f94ffefe483bd2a08ad7afb30fac7aa029007)) -* **security:** address CVE-2021-3749 - axios >=0.22.0 ([61fc700](https://github.com/hyperledger/cacti/commit/61fc7001b1dd0849ab1d9bcab08e2475c695adae)) -* **security:** remediate qs vulnerability CVE-2022-24999 ([536b6b1](https://github.com/hyperledger/cacti/commit/536b6b1b7ab9014ebcd6b162e1a467e78b52afdd)) - -### Features - -* **cactus-plugin-ledger-connector-fabric:** support delegated (offline) signatures ([e2812f4](https://github.com/hyperledger/cacti/commit/e2812f4abce00a1918b8d13a6cfff382289ff998)), closes [#2598](https://github.com/hyperledger/cacti/issues/2598) - -# [2.0.0-alpha.2](https://github.com/hyperledger/cacti/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2023-09-27) - -### Features - -* **plugin-persistence-fabric:** add new fabric persistence plugin ([47a64ee](https://github.com/hyperledger/cacti/commit/47a64ee17446db8102e2ca95f16b26f8778175a4)), closes [#2259](https://github.com/hyperledger/cacti/issues/2259) [#2265](https://github.com/hyperledger/cacti/issues/2265) diff --git a/packages/cactus-plugin-persistence-fabric/Dockerfile b/packages/cactus-plugin-persistence-fabric/Dockerfile new file mode 100644 index 0000000000..424a796e79 --- /dev/null +++ b/packages/cactus-plugin-persistence-fabric/Dockerfile @@ -0,0 +1,14 @@ +FROM node:16 + +ENV PACKAGE_PATH=/opt/cactus-plugin-persistence-fabric + +WORKDIR ${PACKAGE_PATH} + +# CMake is required by one of npm dependencies (install other packages in this step as well in the future) +RUN apt-get update && apt-get install -y cmake && rm -rf /var/lib/apt/lists/* + +COPY ./dist/yarn.lock ./package.json ./ +RUN yarn install --production --ignore-engines --non-interactive --cache-folder ./.yarnCache && \ + rm -rf ./.yarnCache + +COPY ./dist ./dist diff --git a/packages/cactus-plugin-persistence-fabric/README.md b/packages/cactus-plugin-persistence-fabric/README.md index 152f7772ea..041ee927b2 100644 --- a/packages/cactus-plugin-persistence-fabric/README.md +++ b/packages/cactus-plugin-persistence-fabric/README.md @@ -1,9 +1,7 @@ # `@hyperledger/cactus-plugin-persistence-fabric` -This plugin allows `Cacti` to persist Fabric Block general data and basic information about transactions into some storage (currently to a `PostgreSQL` database, but this concept can be extended further). +This plugin allows `Cacti` to persist Hyperledger Fabric data into some storage (currently to a `PostgreSQL` database, but this concept can be extended further). Data in the database can later be analyzed and viewed in a GUI tool. -GUI tool is in project root directory of Cacti project in GUI folder. cacti/packages/cacti-ledger-browser - ## Summary @@ -17,9 +15,9 @@ GUI tool is in project root directory of Cacti project in GUI folder. cacti/pack ## Remarks -- This plugin was only tested with small test ledgers. Running it to synchronize with old ledgers will take a lot of time. +- This plugin was only tested with small Fabric ledgers. Running it to archive and monitor large ledgers is not recommended yet. - For now, the database schema is not considered public and can change over time (i.e., writing own application that reads data directly from the database is discouraged). -- All the methods must be called directly on the plugin instance for now. +- Only `status` endpoint is available, all the methods must be called directly on the plugin instance for now. ## Getting Started @@ -35,65 +33,88 @@ yarn run configure ### Usage -Instantiate a new `PluginPersistenceFabrickBlock` instance: +Instantiate a new `PluginPersistenceFabric` instance: ```typescript -import { PluginPersistenceFabric } from "../../../main/typescript/plugin-fabric-persistence-block"; +import { PluginPersistenceFabric } from "@hyperledger/cactus-plugin-persistence-fabric"; import { v4 as uuidv4 } from "uuid"; -PluginInstance = new PluginPersistenceFabric({ - gatewayOptions, +const persistencePlugin = new PluginPersistenceFabric({ apiClient, - logLevel: testLogLevel, - instanceId: uuidv4(), - connectionString: - "postgresql://postgres:your-super-secret-and-long-postgres-password@localhost:5432/postgres", + logLevel: "info", + instanceId, + connectionString: "postgresql://postgres:your-super-secret-and-long-postgres-password@localhost:5432/postgres",, + channelName: "mychannel", + gatewayOptions: { + identity: signingCredential.keychainRef, + wallet: { + keychain: signingCredential, + }, + }, }); // Initialize the connection to the DB -PluginInstance.onPluginInit(); +await persistencePlugin.onPluginInit(); ``` -Alternatively, import `PluginPersistenceFabric` from the plugin package and use it to create a plugin. +Alternatively, import `PluginFactoryLedgerPersistence` from the plugin package and use it to create a plugin. ```typescript -import { PluginPersistenceFabric } from "@hyperledger/plugin-fabric-persistence-block"; +import { PluginFactoryLedgerPersistence } from "@hyperledger/cactus-plugin-persistence-fabric"; import { PluginImportType } from "@hyperledger/cactus-core-api"; import { v4 as uuidv4 } from "uuid"; -const factory = new PluginFactoryPersistenceFabricBlock({ +const factory = new PluginFactoryLedgerPersistence({ pluginImportType: PluginImportType.Local, }); const persistencePlugin = await factory.create({ - instanceId: uuidv4(), - apiClient: new SocketIOApiClient(apiConfigOptions), + apiClient, logLevel: "info", - connectionString: - "postgresql://postgres:your-super-secret-and-long-postgres-password@localhost:5432/postgres", + instanceId, + connectionString: "postgresql://postgres:your-super-secret-and-long-postgres-password@localhost:5432/postgres",, + channelName: "mychannel", + gatewayOptions: { + identity: signingCredential.keychainRef, + wallet: { + keychain: signingCredential, + }, + }, }); // Initialize the connection to the DB -persistencePlugin.onPluginInit(); +await persistencePlugin.onPluginInit(); ``` -onPluginInit it also creates database structure if this is first time run +You can use the persistent plugin to synchronize ledger state with the database. Here is a sample script that starts monitoring for new blocks: -// Start synchronization with ledger. -// To synchronize ledger - -you individually +```typescript +// Start monitoring new blocks. +// Entire ledger is synchronized first with the DB (`syncAll` is called) so this operation can take a while on large ledgers! +persistencePlugin.startMonitor((err) => { + reject(err); +}); // Show current status of the plugin -PluginInstance.getStatus(); - +persistencePlugin.getStatus(); ``` +> See [plugin integration tests](./src/test/typescript/integration) for complete usage examples. + +### Building/running the container image locally +In the Cacti project root say: + +```sh +DOCKER_BUILDKIT=1 docker build ./packages/cactus-plugin-persistence-fabric/ -f ./packages/cactus-plugin-persistence-fabric/Dockerfile -t cactus-plugin-persistence-fabric ``` ## Endpoints +### StatusV1 (`/api/v1/plugins/@hyperledger/cactus-plugin-persistence-fabric/status`) + +- Returns status of the plugin (latest block read, failed blocks, is monitor running, etc...) + ### Plugin Methods - Most of the plugin functionalities are currently not available through OpenAPI interface, please use direct method calls instead. @@ -110,42 +131,28 @@ PluginInstance.getStatus(); - Get status report of this instance of persistence plugin. -#### `constinousBlocksSynchronization` - -- Start the block synchronization process. New blocks from the ledger will be parsed and pushed to the database. - -#### `continueBlocksSynchronization` - -- Start the block synchronization process. New blocks from the ledger will be parsed and pushed to the database. Should be used periodically. +#### `startMonitor` -#### `changeSynchronization` +- Start the block monitoring process. New blocks from the ledger will be parsed and pushed to the database. -- Stop the block synchronization process. +#### `stopMonitor` -#### `whichBlocksAreMissingInDdSimple` +- Stop the block monitoring process. -- Walk through all the blocks that could not be synchronized with the DB for some reasons and list them +#### `syncFailedBlocks` -#### `synchronizeOnlyMissedBlocks` +- Walk through all the blocks that could not be synchronized with the DB for some reasons and try pushing them again. -- Walk through all the blocks that are listed as not be synchronized with the DB for some reasons and try push them into DB from ledger. -- can try many times to use this +#### `syncAll` -### `setLastBlockConsidered` - -- set the last block in ledger which we consider valid by our party and synchronize only to this point in ledger - If some blocks above this number are already in database they will not be removed. - -#### `initialBlocksSynchronization` - -- Synchronize entire first N number of blocks of ledger state with the database. It is a good start and easy to check if everything is correctly set. +- Synchronize entire ledger state with the database. ## Running the tests -To run all the tests for this persistence fabric plugin to ensure it's working correctly execute the following from the root of the `cactus` project: +To run all the tests for this persistence plugin to ensure it's working correctly execute the following from the root of the `cactus` project: ```sh -npx jest cactus-plugin-fabric-persistence-block +npx jest cactus-plugin-persistence-fabric ``` ## Contributing @@ -156,23 +163,19 @@ Please review [CONTRIBUTING.md](../../CONTRIBUTING.md) to get started. ### Quick plugin project walkthrough -#### ./src/main/json/contract_abi - -- Contains reference token ABIs used to call and identify token transfers. - #### `./src/main/json/openapi.json` - Contains OpenAPI definition. #### `./src/main/sql/schema.sql` -- Database schema for Ethereum data. +- Database schema for Fabric data. #### `./src/main/typescript/web-services` -- Folder that contains web service endpoint definitions if present. +- Folder that contains web service endpoint definitions. -#### `./plugin-fabric-persistence-block` +#### `./plugin-persistence-fabric` - Main persistent plugin logic file diff --git a/packages/cactus-plugin-persistence-fabric/package.json b/packages/cactus-plugin-persistence-fabric/package.json index bcbcc46b54..225977aa4e 100644 --- a/packages/cactus-plugin-persistence-fabric/package.json +++ b/packages/cactus-plugin-persistence-fabric/package.json @@ -1,7 +1,7 @@ { "name": "@hyperledger/cactus-plugin-persistence-fabric", "version": "2.0.0-rc.2", - "description": "A web service plugin that provides management capabilities on a Cacti Plugin Fabric Block Persistence as a scrapper of blocks.", + "description": "Persistence plugin for Fabric ledgers to store data into a database.", "keywords": [ "Hyperledger", "Cacti", @@ -25,69 +25,56 @@ }, "contributors": [ { - "name": "Barnaba Pawelczak", - "email": "barnaba.pawelczak@fujitsu.com", - "url": "https://fujitsu.com" + "name": "Please add yourself to the list of contributors", + "email": "your.name@example.com", + "url": "https://example.com" }, { "name": "Michal Bajer", "email": "michal.bajer@fujitsu.com", - "url": "https://fujitsu.com" - }, - { - "name": "Eryk Baranowski", - "email": "Eryk.Baranowski@fujitsu.com", - "url": "https://fujitsu.com" + "url": "https://www.fujitsu.com/global/" }, { "name": "Tomasz Awramski", "email": "tomasz.awramski@fujitsu.com", - "url": "https://fujitsu.com" + "url": "https://www.fujitsu.com/global/" } ], "main": "dist/lib/main/typescript/index.js", "module": "dist/lib/main/typescript/index.js", - "browser": "dist/cactus-plugin-persistence-fabric.web.umd.js", "types": "dist/lib/main/typescript/index.d.ts", "files": [ "dist/*" ], "scripts": { - "build": "npm run build-ts && npm run build:dev:backend:postbuild", + "build": "npm run build-ts", "build-ts": "tsc", - "build:dev:backend:postbuild": "npm run copy-yarn-lock", "codegen": "run-p 'codegen:*'", "codegen:openapi": "npm run generate-sdk", - "copy-yarn-lock": "cp -af ../../yarn.lock ./dist/yarn.lock", - "generate-sdk": "openapi-generator-cli generate -i ./src/main/json/openapi.json -g typescript-axios -o ./src/main/typescript/generated/openapi/typescript-axios/ --reserved-words-mappings protected=protected --ignore-file-override ../../openapi-generator-ignore", - "watch": "npm-watch", - "webpack": "npm-run-all webpack:dev", - "webpack:dev": "npm-run-all webpack:dev:node webpack:dev:web", - "webpack:dev:node": "webpack --env=dev --target=node --config ../../webpack.config.js", - "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" + "generate-sdk": "openapi-generator-cli generate -i ./src/main/json/openapi.json -g typescript-axios -o ./src/main/typescript/generated/openapi/typescript-axios/ --reserved-words-mappings protected=protected --ignore-file-override ../../openapi-generator-ignore" }, "dependencies": { "@hyperledger/cactus-common": "2.0.0-rc.2", "@hyperledger/cactus-core": "2.0.0-rc.2", "@hyperledger/cactus-core-api": "2.0.0-rc.2", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.2", "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.2", + "async-mutex": "0.4.0", "axios": "1.7.2", - "fabric-protos": "2.2.20", - "js-sha256": "0.9.0", "pg": "8.8.0", - "safe-stable-stringify": "2.4.3", - "socket.io": "4.6.2" + "run-time-error-cjs": "1.4.0", + "uuid": "10.0.0" }, "devDependencies": { + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.2", "@hyperledger/cactus-test-tooling": "2.0.0-rc.2", + "@openapitools/openapi-generator-cli": "2.7.0", "@types/express": "4.17.21", "@types/pg": "8.6.5", - "@types/uuid": "10.0.0", "body-parser": "1.20.2", "express": "4.19.2", - "fabric-network": "2.2.20", - "uuid": "10.0.0" + "jest-extended": "4.0.1", + "rxjs": "7.8.1", + "socket.io": "4.6.2" }, "engines": { "node": ">=18", @@ -96,13 +83,5 @@ "publishConfig": { "access": "public" }, - "browserMinified": "dist/cactus-plugin-persistence-fabric.web.umd.min.js", - "mainMinified": "dist/cactus-plugin-persistence-fabric.node.umd.min.js", - "watch": { - "codegen:openapi": { - "patterns": [ - "./src/main/json/openapi.json" - ] - } - } + "watch": {} } diff --git a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json index f45516b1c8..9303743ea6 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json +++ b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json @@ -1,8 +1,8 @@ { "openapi": "3.0.3", "info": { - "title": "Hyperledger Cactus Plugin - Block Fabrick Persistence", - "description": "Scrap fabric ledger into database. Needs administrative privileges.", + "title": "Hyperledger Cactus Plugin - Persistence Fabric", + "description": "Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI", "version": "2.0.0-rc.2", "license": { "name": "Apache-2.0", @@ -10,7 +10,120 @@ } }, "components": { - "schemas": {} + "schemas": { + "TrackedOperationV1": { + "description": "Persistence plugin operation that is tracked and returned in status report.", + "type": "object", + "required": ["startAt", "operation"], + "properties": { + "startAt": { + "type": "string", + "nullable": false, + "description": "Start time of the operation." + }, + "operation": { + "type": "string", + "nullable": false, + "description": "Operation name." + } + } + }, + "StatusResponseV1": { + "description": "Response with plugin status report.", + "type": "object", + "required": [ + "instanceId", + "connected", + "webServicesRegistered", + "operationsRunning", + "monitorRunning", + "lastSeenBlock" + ], + "properties": { + "instanceId": { + "type": "string", + "nullable": false, + "description": "Plugin instance id." + }, + "connected": { + "type": "boolean", + "nullable": false, + "description": "True if successfully connected to the database, false otherwise." + }, + "webServicesRegistered": { + "type": "boolean", + "nullable": false, + "description": "True if web services were correctly exported." + }, + "operationsRunning": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TrackedOperationV1" + } + }, + "monitorRunning": { + "type": "boolean", + "nullable": false, + "description": "True if block monitoring is running, false otherwise." + }, + "lastSeenBlock": { + "type": "number", + "nullable": false, + "description": "Number of the last block seen by the block monitor." + } + } + }, + "ErrorExceptionResponseV1": { + "type": "object", + "required": ["message", "error"], + "properties": { + "message": { + "type": "string", + "nullable": false + }, + "error": { + "type": "string", + "nullable": false + } + } + } + } }, - "paths": {} + "paths": { + "/api/v1/plugins/@hyperledger/cactus-plugin-persistence-fabric/status": { + "get": { + "x-hyperledger-cacti": { + "http": { + "verbLowerCase": "get", + "path": "/api/v1/plugins/@hyperledger/cactus-plugin-persistence-fabric/status" + } + }, + "operationId": "getStatusV1", + "summary": "Get the status of persistence plugin for fabric", + "parameters": [], + "responses": { + "200": { + "description": "OK", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/StatusResponseV1" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ErrorExceptionResponseV1" + } + } + } + } + } + } + } + } } diff --git a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json index f45516b1c8..9303743ea6 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json @@ -1,8 +1,8 @@ { "openapi": "3.0.3", "info": { - "title": "Hyperledger Cactus Plugin - Block Fabrick Persistence", - "description": "Scrap fabric ledger into database. Needs administrative privileges.", + "title": "Hyperledger Cactus Plugin - Persistence Fabric", + "description": "Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI", "version": "2.0.0-rc.2", "license": { "name": "Apache-2.0", @@ -10,7 +10,120 @@ } }, "components": { - "schemas": {} + "schemas": { + "TrackedOperationV1": { + "description": "Persistence plugin operation that is tracked and returned in status report.", + "type": "object", + "required": ["startAt", "operation"], + "properties": { + "startAt": { + "type": "string", + "nullable": false, + "description": "Start time of the operation." + }, + "operation": { + "type": "string", + "nullable": false, + "description": "Operation name." + } + } + }, + "StatusResponseV1": { + "description": "Response with plugin status report.", + "type": "object", + "required": [ + "instanceId", + "connected", + "webServicesRegistered", + "operationsRunning", + "monitorRunning", + "lastSeenBlock" + ], + "properties": { + "instanceId": { + "type": "string", + "nullable": false, + "description": "Plugin instance id." + }, + "connected": { + "type": "boolean", + "nullable": false, + "description": "True if successfully connected to the database, false otherwise." + }, + "webServicesRegistered": { + "type": "boolean", + "nullable": false, + "description": "True if web services were correctly exported." + }, + "operationsRunning": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TrackedOperationV1" + } + }, + "monitorRunning": { + "type": "boolean", + "nullable": false, + "description": "True if block monitoring is running, false otherwise." + }, + "lastSeenBlock": { + "type": "number", + "nullable": false, + "description": "Number of the last block seen by the block monitor." + } + } + }, + "ErrorExceptionResponseV1": { + "type": "object", + "required": ["message", "error"], + "properties": { + "message": { + "type": "string", + "nullable": false + }, + "error": { + "type": "string", + "nullable": false + } + } + } + } }, - "paths": {} + "paths": { + "/api/v1/plugins/@hyperledger/cactus-plugin-persistence-fabric/status": { + "get": { + "x-hyperledger-cacti": { + "http": { + "verbLowerCase": "get", + "path": "/api/v1/plugins/@hyperledger/cactus-plugin-persistence-fabric/status" + } + }, + "operationId": "getStatusV1", + "summary": "Get the status of persistence plugin for fabric", + "parameters": [], + "responses": { + "200": { + "description": "OK", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/StatusResponseV1" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ErrorExceptionResponseV1" + } + } + } + } + } + } + } + } } diff --git a/packages/cactus-plugin-persistence-fabric/src/main/sql/schema.sql b/packages/cactus-plugin-persistence-fabric/src/main/sql/schema.sql index c535009efb..7e88965aa7 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/sql/schema.sql +++ b/packages/cactus-plugin-persistence-fabric/src/main/sql/schema.sql @@ -1,175 +1,227 @@ --- --- PostgreSQL database dump --- +--- Clean start: +--- DROP SCHEMA fabric CASCADE; --- Dumped from database version 10.4 --- Dumped by pg_dump version 10.4 +CREATE SCHEMA fabric; -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET client_min_messages = warning; -SET row_security = off; +ALTER SCHEMA fabric OWNER TO postgres; --- --- Name: fabricexplorer; Type: DATABASE; Schema: -; Owner: hppoc --- +-- Table: public.plugin_status + +-- DROP TABLE IF EXISTS public.plugin_status; + +CREATE TABLE IF NOT EXISTS public.plugin_status +( + name text COLLATE pg_catalog."default" NOT NULL, + last_instance_id text COLLATE pg_catalog."default" NOT NULL, + is_schema_initialized boolean NOT NULL, + created_at timestamp with time zone NOT NULL DEFAULT now(), + last_connected_at timestamp with time zone NOT NULL DEFAULT now(), + CONSTRAINT plugin_status_pkey PRIMARY KEY (name), + CONSTRAINT plugin_status_name_key UNIQUE (name) +) +TABLESPACE pg_default; +ALTER TABLE IF EXISTS public.plugin_status + OWNER to postgres; +GRANT ALL ON TABLE public.plugin_status TO anon; +GRANT ALL ON TABLE public.plugin_status TO authenticated; +GRANT ALL ON TABLE public.plugin_status TO postgres; +GRANT ALL ON TABLE public.plugin_status TO service_role; -- --- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: +-- Name: block; Type: TABLE; Schema: fabric; Owner: postgres -- +CREATE TABLE fabric.block ( + id uuid DEFAULT gen_random_uuid() NOT NULL, + number numeric NOT NULL, + hash text NOT NULL, + transaction_count numeric DEFAULT '0'::numeric NOT NULL +); +ALTER TABLE fabric.block OWNER TO postgres; -SET default_tablespace = ''; +ALTER TABLE ONLY fabric.block + ADD CONSTRAINT block_pkey PRIMARY KEY (id); +ALTER TABLE ONLY fabric.block + ADD CONSTRAINT block_hash_key UNIQUE (hash); +ALTER TABLE ONLY fabric.block + ADD CONSTRAINT block_number_key UNIQUE (number); -SET default_with_oids = false; +CREATE UNIQUE INDEX block_hash_unique_idx ON fabric.block USING btree (hash); +CREATE UNIQUE INDEX block_number_unique_idx ON fabric.block USING btree (number); -- --- Name: blocks; Type: TABLE; Schema: public; Owner: hppoc +-- Name: certificate; Type: TABLE; Schema: fabric; Owner: postgres -- +CREATE TABLE fabric.certificate ( + id uuid DEFAULT extensions.uuid_generate_v4() NOT NULL, + serial_number text NOT NULL, + subject_common_name text DEFAULT ''::text, + subject_org_unit text DEFAULT ''::text, + subject_org text DEFAULT ''::text, + subject_locality text DEFAULT ''::text, + subject_state text DEFAULT ''::text, + subject_country text DEFAULT ''::text, + issuer_common_name text DEFAULT ''::text, + issuer_org_unit text DEFAULT ''::text, + issuer_org text DEFAULT ''::text, + issuer_locality text DEFAULT ''::text, + issuer_state text DEFAULT ''::text, + issuer_country text DEFAULT ''::text, + subject_alt_name text NOT NULL, + valid_from timestamp with time zone NOT NULL, + valid_to timestamp with time zone NOT NULL, + pem text NOT NULL +); -CREATE TABLE IF NOT EXISTS public.fabric_blocks_entry -( - id text DEFAULT NULL, - block_num integer DEFAULT NULL, - block_data text DEFAULT NULL, - CONSTRAINT fabric_block_pkey PRIMARY KEY (id), - CONSTRAINT fabric_block_name_key UNIQUE (id) -) -TABLESPACE pg_default; - -ALTER TABLE IF EXISTS public.fabric_blocks_entry OWNER to postgres; - -GRANT ALL ON TABLE public.fabric_blocks_entry TO anon; - -GRANT ALL ON TABLE public.fabric_blocks_entry TO authenticated; - -GRANT ALL ON TABLE public.fabric_blocks_entry TO postgres; +ALTER TABLE fabric.certificate OWNER TO postgres; -GRANT ALL ON TABLE public.fabric_blocks_entry TO service_role; +ALTER TABLE ONLY fabric.certificate + ADD CONSTRAINT certifiate_pk PRIMARY KEY (id); +ALTER TABLE ONLY fabric.certificate + ADD CONSTRAINT certifiate_pem_unique UNIQUE (pem); +ALTER TABLE ONLY fabric.certificate + ADD CONSTRAINT certifiate_serial_number_unique UNIQUE (serial_number); +CREATE UNIQUE INDEX certifiate_serial_number_unique_idx ON fabric.certificate USING btree (serial_number); +-- +-- Name: transaction; Type: TABLE; Schema: fabric; Owner: postgres +-- -CREATE TABLE IF NOT EXISTS public.fabric_transactions_entry -( - id text DEFAULT NULL, - block_id text DEFAULT NULL, - transaction_data text DEFAULT NULL, - CONSTRAINT fabric_transaction_pkey PRIMARY KEY (id), - CONSTRAINT fabric_transaction_name_key UNIQUE (id) +CREATE TABLE fabric.transaction ( + id uuid DEFAULT gen_random_uuid() NOT NULL, + hash text NOT NULL, + channel_id text NOT NULL, + "timestamp" timestamp with time zone NOT NULL, + protocol_version smallint DEFAULT '0'::smallint NOT NULL, + type text NOT NULL, + epoch bigint NOT NULL, + block_id uuid, + block_number numeric ); -ALTER TABLE IF EXISTS public.fabric_blocks_entry OWNER to postgres; +ALTER TABLE fabric.transaction OWNER TO postgres; -GRANT ALL ON TABLE public.fabric_blocks_entry TO anon; +ALTER TABLE ONLY fabric.transaction + ADD CONSTRAINT transaction_pkey PRIMARY KEY (id); +ALTER TABLE ONLY fabric.transaction + ADD CONSTRAINT transaction_hash_key UNIQUE (hash); -GRANT ALL ON TABLE public.fabric_blocks_entry TO authenticated; +CREATE UNIQUE INDEX transaction_hash_unique_idx ON fabric.transaction USING btree (hash); +-- +-- Name: transaction_action; Type: TABLE; Schema: fabric; Owner: postgres +-- -GRANT ALL ON TABLE public.fabric_blocks_entry TO postgres; +CREATE TABLE fabric.transaction_action ( + id uuid DEFAULT gen_random_uuid() NOT NULL, + function_name text DEFAULT ''::text, + function_args text DEFAULT ''::text, + chaincode_id text NOT NULL, + creator_msp_id text NOT NULL, + creator_certificate_id uuid, + transaction_id uuid +); -GRANT ALL ON TABLE public.fabric_blocks_entry TO service_role; +ALTER TABLE fabric.transaction_action OWNER TO postgres; +ALTER TABLE ONLY fabric.transaction_action + ADD CONSTRAINT transaction_action_pkey PRIMARY KEY (id); -CREATE TABLE IF NOT EXISTS public.fabric_blocks -( - id text NOT NULL, - block_number text, - data_hash text DEFAULT NULL::character varying, - tx_count integer, - created_at timestamp without time zone, - prev_blockhash text DEFAULT NULL::character varying, - channel_id text DEFAULT NULL::character varying, - CONSTRAINT blocks_details_pkey PRIMARY KEY (id), - CONSTRAINT blocks_details_name_key UNIQUE (id) +-- +-- Name: transaction_action_endorsement; Type: TABLE; Schema: fabric; Owner: postgres +-- + +CREATE TABLE fabric.transaction_action_endorsement ( + id uuid DEFAULT gen_random_uuid() NOT NULL, + mspid text NOT NULL, + signature text NOT NULL, + certificate_id uuid NOT NULL, + transaction_action_id uuid ); -ALTER TABLE IF EXISTS public.fabric_blocks OWNER to postgres; +ALTER TABLE fabric.transaction_action_endorsement OWNER TO postgres; -GRANT ALL ON TABLE public.fabric_blocks TO anon; +ALTER TABLE ONLY fabric.transaction_action_endorsement + ADD CONSTRAINT transaction_action_endorsements_pkey PRIMARY KEY (id); -GRANT ALL ON TABLE public.fabric_blocks TO authenticated; +-- FUNCTION: fabric.get_missing_blocks_in_range(integer, integer) -GRANT ALL ON TABLE public.fabric_blocks TO postgres; +-- DROP FUNCTION IF EXISTS fabric.get_missing_blocks_in_range(integer, integer); -GRANT ALL ON TABLE public.fabric_blocks TO service_role; +CREATE OR REPLACE FUNCTION fabric.get_missing_blocks_in_range( + start_number integer, + end_number integer) +RETURNS TABLE(block_number integer) +LANGUAGE 'plpgsql' +COST 100 +VOLATILE PARALLEL UNSAFE +ROWS 1000 +AS $BODY$ +BEGIN + RETURN query + SELECT series AS block_number + FROM generate_series(start_number, end_number, 1) series + LEFT JOIN fabric.block ON series = block.number + WHERE block.number IS NULL; +END; +$BODY$; -CREATE TABLE IF NOT EXISTS public.fabric_transactions -( - id BIGSERIAL, - block_number text, - block_id text, - transaction_id text DEFAULT NULL::character varying, - created_at timestamp without time zone, - chaincode_name character varying(255) DEFAULT NULL::character varying, - status integer, - creator_msp_id text DEFAULT NULL::character varying, - endorser_msp_id character varying(800) DEFAULT NULL::character varying, - chaincode_id text DEFAULT NULL::character varying, - type text DEFAULT NULL::character varying, - read_set text DEFAULT NULL, - write_set text DEFAULT NULL, - channel_id text DEFAULT NULL::character varying, - payload_extension character varying, - creator_id_bytes character varying, - creator_nonce character varying, - chaincode_proposal_input character varying, - tx_response character varying, - payload_proposal_hash character varying, - endorser_id_bytes character varying, - endorser_signature character varying, - CONSTRAINT transaction_details_pkey PRIMARY KEY (transaction_id), - CONSTRAINT transaction_details_name_key UNIQUE (transaction_id) -); +ALTER FUNCTION fabric.get_missing_blocks_in_range(integer, integer) + OWNER TO postgres; +-- +-- Name: transaction_action transaction_action_creator_certificate_id_fkey; Type: FK CONSTRAINT; Schema: fabric; Owner: postgres +-- -ALTER TABLE IF EXISTS public.fabric_transactions OWNER to postgres; +ALTER TABLE ONLY fabric.transaction_action + ADD CONSTRAINT transaction_action_creator_certificate_id_fkey FOREIGN KEY (creator_certificate_id) REFERENCES fabric.certificate(id); -GRANT ALL ON TABLE public.fabric_transactions TO anon; -GRANT ALL ON TABLE public.fabric_transactions TO authenticated; +-- +-- Name: transaction_action_endorsement transaction_action_endorsement_transaction_action_id_fkey; Type: FK CONSTRAINT; Schema: fabric; Owner: postgres +-- -GRANT ALL ON TABLE public.fabric_transactions TO postgres; +ALTER TABLE ONLY fabric.transaction_action_endorsement + ADD CONSTRAINT transaction_action_endorsement_transaction_action_id_fkey FOREIGN KEY (transaction_action_id) REFERENCES fabric.transaction_action(id) ON UPDATE CASCADE ON DELETE CASCADE; -GRANT ALL ON TABLE public.fabric_transactions TO service_role; +-- +-- Name: transaction_action_endorsement transaction_action_endorsements_certificate_id_fkey; Type: FK CONSTRAINT; Schema: fabric; Owner: postgres +-- +ALTER TABLE ONLY fabric.transaction_action_endorsement + ADD CONSTRAINT transaction_action_endorsements_certificate_id_fkey FOREIGN KEY (certificate_id) REFERENCES fabric.certificate(id); --- Table: public.plugin_status +-- +-- Name: transaction_action transaction_action_transaction_id_fkey; Type: FK CONSTRAINT; Schema: fabric; Owner: postgres +-- --- DROP TABLE IF EXISTS public.plugin_status; +ALTER TABLE ONLY fabric.transaction_action + ADD CONSTRAINT transaction_action_transaction_id_fkey FOREIGN KEY (transaction_id) REFERENCES fabric.transaction(id); -CREATE TABLE IF NOT EXISTS public.plugin_status -( - name text COLLATE pg_catalog."default" NOT NULL, - last_instance_id text COLLATE pg_catalog."default" NOT NULL, - is_schema_initialized boolean NOT NULL, - created_at timestamp with time zone NOT NULL DEFAULT now(), - last_connected_at timestamp with time zone NOT NULL DEFAULT now(), - CONSTRAINT plugin_status_pkey PRIMARY KEY (name), - CONSTRAINT plugin_status_name_key UNIQUE (name) -); -ALTER TABLE IF EXISTS public.plugin_status OWNER to postgres; +-- +-- Name: transaction transaction_block_id_fkey; Type: FK CONSTRAINT; Schema: fabric; Owner: postgres +-- -GRANT ALL ON TABLE public.plugin_status TO anon; +ALTER TABLE ONLY fabric.transaction + ADD CONSTRAINT transaction_block_id_fkey FOREIGN KEY (block_id) REFERENCES fabric.block(id); -GRANT ALL ON TABLE public.plugin_status TO authenticated; -GRANT ALL ON TABLE public.plugin_status TO postgres; +-- +-- Name: transaction transaction_block_number_fkey; Type: FK CONSTRAINT; Schema: fabric; Owner: postgres +-- -GRANT ALL ON TABLE public.plugin_status TO service_role; +ALTER TABLE ONLY fabric.transaction + ADD CONSTRAINT transaction_block_number_fkey FOREIGN KEY (block_number) REFERENCES fabric.block(number); diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/db-client/database.types.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/db-client/database.types.ts new file mode 100644 index 0000000000..4e2e152f7d --- /dev/null +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/db-client/database.types.ts @@ -0,0 +1,324 @@ +export type Json = + | string + | number + | boolean + | null + | { [key: string]: Json | undefined } + | Json[]; + +export type Database = { + public: { + Tables: { + plugin_status: { + Row: { + name: string; + last_instance_id: string; + is_schema_initialized: boolean; + created_at: string; + last_connected_at: string; + }; + Insert: { + name: string; + last_instance_id: string; + is_schema_initialized: boolean; + created_at?: string; + last_connected_at?: string; + }; + Update: { + name?: string; + last_instance_id?: string; + is_schema_initialized?: boolean; + created_at?: string; + last_connected_at?: string; + }; + }; + }; + }; + fabric: { + Tables: { + block: { + Row: { + hash: string; + id: string; + number: string; + transaction_count: number; + }; + Insert: { + hash: string; + id?: string; + number: number; + transaction_count?: number; + }; + Update: { + hash?: string; + id?: string; + number?: number; + transaction_count?: number; + }; + Relationships: []; + }; + certificate: { + Row: { + id: string; + issuer_common_name: string | null; + issuer_country: string | null; + issuer_locality: string | null; + issuer_org: string | null; + issuer_org_unit: string | null; + issuer_state: string | null; + pem: string; + serial_number: string; + subject_alt_name: string; + subject_common_name: string | null; + subject_country: string | null; + subject_locality: string | null; + subject_org: string | null; + subject_org_unit: string | null; + subject_state: string | null; + valid_from: string; + valid_to: string; + }; + Insert: { + id?: string; + issuer_common_name?: string | null; + issuer_country?: string | null; + issuer_locality?: string | null; + issuer_org?: string | null; + issuer_org_unit?: string | null; + issuer_state?: string | null; + pem: string; + serial_number: string; + subject_alt_name: string; + subject_common_name?: string | null; + subject_country?: string | null; + subject_locality?: string | null; + subject_org?: string | null; + subject_org_unit?: string | null; + subject_state?: string | null; + valid_from: string; + valid_to: string; + }; + Update: { + id?: string; + issuer_common_name?: string | null; + issuer_country?: string | null; + issuer_locality?: string | null; + issuer_org?: string | null; + issuer_org_unit?: string | null; + issuer_state?: string | null; + pem?: string; + serial_number?: string; + subject_alt_name?: string; + subject_common_name?: string | null; + subject_country?: string | null; + subject_locality?: string | null; + subject_org?: string | null; + subject_org_unit?: string | null; + subject_state?: string | null; + valid_from?: string; + valid_to?: string; + }; + Relationships: []; + }; + transaction: { + Row: { + block_id: string | null; + block_number: number | null; + channel_id: string; + epoch: number; + hash: string; + id: string; + protocol_version: number; + timestamp: string; + type: string; + }; + Insert: { + block_id?: string | null; + block_number?: number | null; + channel_id: string; + epoch: number; + hash: string; + id?: string; + protocol_version?: number; + timestamp: string; + type: string; + }; + Update: { + block_id?: string | null; + block_number?: number | null; + channel_id?: string; + epoch?: number; + hash?: string; + id?: string; + protocol_version?: number; + timestamp?: string; + type?: string; + }; + Relationships: [ + { + foreignKeyName: "transaction_block_id_fkey"; + columns: ["block_id"]; + isOneToOne: false; + referencedRelation: "block"; + referencedColumns: ["id"]; + }, + { + foreignKeyName: "transaction_block_number_fkey"; + columns: ["block_number"]; + isOneToOne: false; + referencedRelation: "block"; + referencedColumns: ["number"]; + }, + ]; + }; + transaction_action: { + Row: { + chaincode_id: string; + creator_certificate_id: string | null; + creator_msp_id: string; + function_args: string | null; + function_name: string | null; + id: string; + transaction_id: string | null; + }; + Insert: { + chaincode_id: string; + creator_certificate_id?: string | null; + creator_msp_id: string; + function_args?: string | null; + function_name?: string | null; + id?: string; + transaction_id?: string | null; + }; + Update: { + chaincode_id?: string; + creator_certificate_id?: string | null; + creator_msp_id?: string; + function_args?: string | null; + function_name?: string | null; + id?: string; + transaction_id?: string | null; + }; + Relationships: [ + { + foreignKeyName: "transaction_action_creator_certificate_id_fkey"; + columns: ["creator_certificate_id"]; + isOneToOne: false; + referencedRelation: "certificate"; + referencedColumns: ["id"]; + }, + { + foreignKeyName: "transaction_action_transaction_id_fkey"; + columns: ["transaction_id"]; + isOneToOne: false; + referencedRelation: "transaction"; + referencedColumns: ["id"]; + }, + ]; + }; + transaction_action_endorsement: { + Row: { + certificate_id: string; + id: string; + mspid: string; + signature: string; + transaction_action_id: string | null; + }; + Insert: { + certificate_id: string; + id?: string; + mspid: string; + signature: string; + transaction_action_id?: string | null; + }; + Update: { + certificate_id?: string; + id?: string; + mspid?: string; + signature?: string; + transaction_action_id?: string | null; + }; + Relationships: [ + { + foreignKeyName: "transaction_action_endorsement_transaction_action_id_fkey"; + columns: ["transaction_action_id"]; + isOneToOne: false; + referencedRelation: "transaction_action"; + referencedColumns: ["id"]; + }, + { + foreignKeyName: "transaction_action_endorsements_certificate_id_fkey"; + columns: ["certificate_id"]; + isOneToOne: false; + referencedRelation: "certificate"; + referencedColumns: ["id"]; + }, + ]; + }; + }; + Views: { + [_ in never]: never; + }; + Functions: { + get_missing_blocks_in_range: { + Args: { + start_number: number; + end_number: number; + }; + Returns: { + block_number: number; + }[]; + }; + }; + Enums: { + [_ in never]: never; + }; + CompositeTypes: { + [_ in never]: never; + }; + }; +}; + +type PublicSchema = Database[Extract]; + +export type TablesInsert< + PublicTableNameOrOptions extends + | keyof PublicSchema["Tables"] + | { schema: keyof Database }, + TableName extends PublicTableNameOrOptions extends { schema: keyof Database } + ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"] + : never = never, +> = PublicTableNameOrOptions extends { schema: keyof Database } + ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends { + Insert: infer I; + } + ? I + : never + : PublicTableNameOrOptions extends keyof PublicSchema["Tables"] + ? PublicSchema["Tables"][PublicTableNameOrOptions] extends { + Insert: infer I; + } + ? I + : never + : never; + +export type TablesUpdate< + PublicTableNameOrOptions extends + | keyof PublicSchema["Tables"] + | { schema: keyof Database }, + TableName extends PublicTableNameOrOptions extends { schema: keyof Database } + ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"] + : never = never, +> = PublicTableNameOrOptions extends { schema: keyof Database } + ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends { + Update: infer U; + } + ? U + : never + : PublicTableNameOrOptions extends keyof PublicSchema["Tables"] + ? PublicSchema["Tables"][PublicTableNameOrOptions] extends { + Update: infer U; + } + ? U + : never + : never; diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/db-client/db-client.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/db-client/db-client.ts index ef096d7d0f..7a330950e5 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/db-client/db-client.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/db-client/db-client.ts @@ -2,43 +2,54 @@ * Client class to communicate with PostgreSQL database. */ +import fs from "fs"; +import path from "path"; +import { Client as PostgresClient } from "pg"; + import { Checks, Logger, LoggerProvider, LogLevelDesc, } from "@hyperledger/cactus-common"; +import { + CactiBlockFullEventV1, + FabricX509CertificateV1, + FullBlockTransactionActionV1, + FullBlockTransactionEndorsementV1, + FullBlockTransactionEventV1, +} from "@hyperledger/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/api"; +import { Database as DatabaseSchemaType } from "./database.types"; -// import { Database as DatabaseSchemaType } from "./database.types"; -// import { getRuntimeErrorCause } from "../utils"; +////////////////////////////////// +// Helper Types +////////////////////////////////// -import fs from "fs"; -import path from "path"; -import { Client as PostgresClient, QueryResult } from "pg"; -import { - InsertBlockDataEntryInterface, - InsertBlockDetailsInterface, - InsertBlockTransactionEntryInterface, - InsertDetailedTransactionEntryInterface, -} from "../types"; -// import { RuntimeError } from "run-time-error-cjs"; +type PublicSchemaTables = DatabaseSchemaType["public"]["Tables"]; +type PluginStatusRowType = PublicSchemaTables["plugin_status"]["Row"]; -export interface PostgresDatabaseClientOptions { - connectionString: string; - logLevel: LogLevelDesc; -} +type SchemaTables = DatabaseSchemaType["fabric"]["Tables"]; +type SchemaFunctions = DatabaseSchemaType["fabric"]["Functions"]; +type BlockRowType = SchemaTables["block"]["Row"]; +type CertificateRowType = SchemaTables["certificate"]["Row"]; +type GetMissingRowsInRangeReturnType = + SchemaFunctions["get_missing_blocks_in_range"]["Returns"]; ////////////////////////////////// // PostgresDatabaseClient ////////////////////////////////// +export interface PostgresDatabaseClientOptions { + connectionString: string; + logLevel: LogLevelDesc; +} + /** * Client class to communicate with PostgreSQL database. * Remember to call `connect()` before using ano of the methods. * * @todo Use pg connection pool */ - export default class PostgresDatabaseClient { private log: Logger; public static readonly CLASS_NAME = "PostgresDatabaseClient"; @@ -62,18 +73,6 @@ export default class PostgresDatabaseClient { }); } - /** - * Internal method that throws if postgres client is not connected yet. - */ - - private assertConnected(): void { - if (!this.isConnected) { - throw new Error( - `${PostgresDatabaseClient.CLASS_NAME} method called before connecting to the DB!`, - ); - } - } - /** * Connect to a PostgreSQL database using connection string from the constructor. */ @@ -92,7 +91,15 @@ export default class PostgresDatabaseClient { this.isConnected = false; } - public async getPluginStatus(pluginName: string): Promise { + /** + * Read status of persistence plugin with specified name. + * + * @param pluginName name of the persistence plugin + * @returns status row + */ + public async getPluginStatus( + pluginName: string, + ): Promise { this.assertConnected(); const queryResponse = await this.client.query( @@ -109,6 +116,13 @@ export default class PostgresDatabaseClient { return queryResponse.rows[0]; } + /** + * Initialize / update entry for specific persistence plugin in the database. + * Create database schema for fabric data if it was not created yet. + * + * @param pluginName name of the persistence plugin + * @param instanceId instance id of the persistence plugin + */ public async initializePlugin( pluginName: string, instanceId: string, @@ -167,119 +181,320 @@ export default class PostgresDatabaseClient { ); } - public async insertBlockDataEntry( - block: InsertBlockDataEntryInterface, - ): Promise { - this.assertConnected(); + /** + * Internal method that throws if postgres client is not connected yet. + */ + private assertConnected(): void { + if (!this.isConnected) { + throw new Error( + `${PostgresDatabaseClient.CLASS_NAME} method called before connecting to the DB!`, + ); + } + } - const insertResponse = await this.client.query( - `INSERT INTO public.fabric_blocks_entry("id", "block_num", "block_data") VALUES ($1, $2, $3)`, - [block.fabric_block_id, block.fabric_block_num, block.fabric_block_data], - ); - this.log.info( - `Inserted ${insertResponse.rowCount} rows into table fabric_blocks_entry`, + /** + * Convert certificate subject attributes to map, throw if string is invalid. + * + * @param attrString cert subject + * + * @returns Map of cert attributes + */ + private certificateAttrsStringToMap(attrString: string): Map { + return new Map( + attrString.split("\n").map((a) => { + const splitAttrs = a.split("="); + if (splitAttrs.length !== 2) { + throw new Error( + `Invalid certificate attribute string: ${attrString}`, + ); + } + return splitAttrs as [string, string]; + }), ); - return insertResponse; } - public async insertBlockDetails( - block: InsertBlockDetailsInterface, - ): Promise { - this.assertConnected(); + /** + * Search for certificate object in database using it's serial number. + * If it's not found, insert. + * + * @param fabricCert fabric x.509 certificate + * + * @returns certificate ID in the DB. + */ + private async insertCertificateIfNotExists( + fabricCert: FabricX509CertificateV1, + ): Promise { + // Try fetching cert ID from the DB + const queryResponse = await this.client.query( + "SELECT id FROM fabric.certificate WHERE serial_number = $1", + [fabricCert.serialNumber], + ); - const insertResponse = await this.client.query( - `INSERT INTO public.fabric_blocks("id", "block_number", "data_hash", "tx_count", "created_at", "prev_blockhash", "channel_id") VALUES ($1, $2, $3, $4, $5, $6, $7)`, + if (queryResponse.rows.length === 1) { + return queryResponse.rows[0].id; + } + + // Insert certificate not existing in the database + const subjectAttrs = this.certificateAttrsStringToMap(fabricCert.subject); + const issuerAttrs = this.certificateAttrsStringToMap(fabricCert.issuer); + + this.log.debug( + `Insert to fabric.certificate with serial number ${fabricCert.serialNumber})`, + ); + const certInsertResponse = await this.client.query( + `INSERT INTO + fabric.certificate("serial_number", "subject_common_name", "subject_org_unit", "subject_org", "subject_locality", + "subject_state", "subject_country", "issuer_common_name", "issuer_org_unit", "issuer_org", "issuer_locality", + "issuer_state", "issuer_country", "subject_alt_name", "valid_from", "valid_to", "pem") + VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17) + RETURNING id;`, [ - block.fabric_block_id, - block.fabric_blocknum, - block.fabric_datahash, - block.fabric_tx_count, - block.fabric_createdat, - block.fabric_prev_blockhash, - block.fabric_channel_id, + fabricCert.serialNumber, + subjectAttrs.get("CN") ?? "", + subjectAttrs.get("OU") ?? "", + subjectAttrs.get("O") ?? "", + subjectAttrs.get("L") ?? "", + subjectAttrs.get("ST") ?? "", + subjectAttrs.get("C") ?? "", + issuerAttrs.get("CN") ?? "", + issuerAttrs.get("OU") ?? "", + issuerAttrs.get("O") ?? "", + issuerAttrs.get("L") ?? "", + issuerAttrs.get("ST") ?? "", + issuerAttrs.get("C") ?? "", + fabricCert.subjectAltName, + fabricCert.validFrom, + fabricCert.validTo, + fabricCert.pem, ], ); - this.log.info( - `Inserted ${insertResponse.rowCount} rows into table fabric_blocks`, - ); - return insertResponse; + if (certInsertResponse.rowCount !== 1) { + throw new Error( + `Certificate with serial number ${fabricCert.serialNumber} was not inserted into the DB`, + ); + } + + return certInsertResponse.rows[0].id; } - public async insertBlockTransactionEntry( - transactions: InsertBlockTransactionEntryInterface, - ): Promise { - this.assertConnected(); + /** + * Insert data to block table. + */ + private async insertToBlockTable( + block: CactiBlockFullEventV1, + ): Promise { + this.log.debug( + `Insert to fabric.block #${block.blockNumber} (${block.blockHash})`, + ); + const blockInsertResponse = await this.client.query( + `INSERT INTO fabric.block("number", "hash", "transaction_count") + VALUES ($1, $2, $3) + RETURNING id;`, + [block.blockNumber, block.blockHash, block.transactionCount], + ); + if (blockInsertResponse.rowCount !== 1) { + throw new Error( + `Block ${block.blockNumber} was not inserted into the DB`, + ); + } - const insertResponse: QueryResult = await this.client.query( - `INSERT INTO public.fabric_transactions_entry("id", "block_id", "transaction_data") VALUES ($1, $2, $3)`, + return blockInsertResponse.rows[0].id; + } + + /** + * Insert data to transaction table. + */ + private async insertToTransactionTable( + tx: FullBlockTransactionEventV1, + blockId: string, + blockNumber: number, + ): Promise { + this.log.debug(`Insert to fabric.transaction with hash ${tx.hash})`); + + const txInsertResponse = await this.client.query( + `INSERT INTO + fabric.transaction("hash", "timestamp", "type", "epoch", "channel_id", "protocol_version", "block_id", "block_number") + VALUES ($1, $2, $3, $4, $5, $6, $7, $8) + RETURNING id;`, [ - transactions.transaction_id, - transactions.fabric_block_id, - transactions.fabric_transaction_data, + tx.hash, + tx.timestamp, + tx.transactionType, + tx.epoch, + tx.channelId, + tx.protocolVersion, + blockId, + blockNumber, ], ); - this.log.info( - `Inserted ${insertResponse.rowCount} rows into table fabric_transactions_entry`, - ); - return insertResponse; + if (txInsertResponse.rowCount !== 1) { + throw new Error(`Transaction ${tx.hash} was not inserted into the DB`); + } + + return txInsertResponse.rows[0].id; } - public async insertDetailedTransactionEntry( - transactions: InsertDetailedTransactionEntryInterface, - ): Promise { - this.assertConnected(); + /** + * Insert data to transaction_action table. + */ + private async insertToTransactionActionTable( + action: FullBlockTransactionActionV1, + txId: string, + ): Promise { + const creatorCertId = await this.insertCertificateIfNotExists( + action.creator.cert, + ); - const insertResponse = await this.client.query( - `INSERT INTO public.fabric_transactions( "block_number","block_id", "transaction_id", "created_at", "chaincode_name", "status", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "read_set", "write_set", "channel_id", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19, $20, $21)`, + this.log.debug("Insert to fabric.transaction_action"); + const txActionInsertResponse = await this.client.query( + `INSERT INTO + fabric.transaction_action("function_name", "function_args", "chaincode_id", "creator_msp_id", "creator_certificate_id", "transaction_id") + VALUES ($1, $2, $3, $4, $5, $6) + RETURNING id;`, [ - // id integer BIGSERIAL, this should auto increment , total number of transactions counter - transactions.block_number, - transactions.block_id, - transactions.transaction_id, - transactions.createdat, - transactions.chaincodename, - transactions.status, - transactions.creator_msp_id, - transactions.endorser_msp_id, - transactions.chaincode_id, - transactions.type, - transactions.read_set, - transactions.write_set, - transactions.channel_id, - transactions.payload_extension, - transactions.creator_id_bytes, - transactions.creator_nonce, - transactions.chaincode_proposal_input, - transactions.tx_response, - transactions.payload_proposal_hash, - transactions.endorser_id_bytes, - transactions.endorser_signature, + action.functionName, + action.functionArgs + .map((a) => "0x" + Buffer.from(a).toString("hex")) + .join(","), + action.chaincodeId, + action.creator.mspid, + creatorCertId, + txId, ], ); - this.log.info( - `Inserted ${insertResponse.rowCount} rows into table fabric_transactions_entry`, + if (txActionInsertResponse.rowCount !== 1) { + throw new Error("Transaction action was not inserted into the DB"); + } + + return txActionInsertResponse.rows[0].id; + } + + /** + * Insert data to transaction_action_endorsement table. + */ + private async insertToTransactionActionEndorsementTable( + endorsement: FullBlockTransactionEndorsementV1, + txActionId: string, + ): Promise { + const signerCertId = await this.insertCertificateIfNotExists( + endorsement.signer.cert, + ); + + this.log.debug("Insert to fabric.transaction_action_endorsement"); + const txActionEndorsementInsertResponse = await this.client.query( + `INSERT INTO + fabric.transaction_action_endorsement("mspid", "signature", "certificate_id", "transaction_action_id") + VALUES ($1, $2, $3, $4);`, + [ + endorsement.signer.mspid, + endorsement.signature, + signerCertId, + txActionId, + ], ); - return insertResponse; + if (txActionEndorsementInsertResponse.rowCount !== 1) { + throw new Error( + "Transaction action endorsement was not inserted into the DB", + ); + } } - public async getMaxBlockNumber(): Promise { - this.log.error("getMaxBlockNumber"); + /** + * Read block data. Throws if block was not found. + * + * @param blockNumber fabric block number + * @returns Block data. + */ + public async getBlock(blockNumber: number): Promise { this.assertConnected(); - const response = await this.client.query( - `select MAX(block_num) from public.fabric_blocks_entry`, + + const queryResponse = await this.client.query( + "SELECT * FROM fabric.block WHERE number = $1", + [blockNumber], ); - return +response.rows[0].max; + if (queryResponse.rows.length !== 1) { + throw new Error(`Could not read block #${blockNumber} from the DB`); + } + + return queryResponse.rows[0]; } - public async isThisBlockInDB(block_num: number): Promise { + /** + * Insert entire block data into the database (the block itself and transactions). + * Everything is committed in single atomic transaction (rollback on error). + * @param blockData new block data. + */ + public async insertBlockData(block: CactiBlockFullEventV1): Promise { this.assertConnected(); - const response = await this.client.query( - `select * from public.fabric_blocks_entry where block_num = $1`, - [block_num], + + this.log.debug("Insert block data, including transactions"); + + try { + await this.client.query("BEGIN"); + + const blockId = await this.insertToBlockTable(block); + + for (const tx of block.cactiTransactionsEvents) { + // Insert transaction + const txId = await this.insertToTransactionTable( + tx, + blockId, + block.blockNumber, + ); + + for (const action of tx.actions) { + // Insert transaction actions + const txActionId = await this.insertToTransactionActionTable( + action, + txId, + ); + + for (const endorsement of action.endorsements) { + // Insert transaction action endorsements + await this.insertToTransactionActionEndorsementTable( + endorsement, + txActionId, + ); + } + } + } + + await this.client.query("COMMIT"); + } catch (err: unknown) { + await this.client.query("ROLLBACK"); + this.log.warn("insertBlockData() exception:", err); + throw new Error( + "Could not insert block data into the database - transaction reverted", + ); + } + } + + /** + * Compare committed block numbers with requested range, return list of blocks that are missing. + * @param startBlockNumber block to check from (including) + * @param endBlockNumber block to check to (including) + * @returns list of missing block numbers + */ + public async getMissingBlocksInRange( + startBlockNumber: number, + endBlockNumber: number, + ): Promise { + Checks.truthy( + endBlockNumber >= startBlockNumber, + `getMissingBlocksInRange startBlockNumber larger than endBlockNumber`, + ); + this.assertConnected(); + + const queryResponse = await this.client.query( + "SELECT * FROM fabric.get_missing_blocks_in_range($1, $2) as block_number", + [startBlockNumber, endBlockNumber], + ); + this.log.debug( + `Found ${queryResponse.rowCount} missing blocks between ${startBlockNumber} and ${endBlockNumber}`, ); - return response; + return queryResponse.rows; } } diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts index b9317879a1..537ad7507e 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Hyperledger Cactus Plugin - Block Fabrick Persistence - * Scrap fabric ledger into database. Needs administrative privileges. + * Hyperledger Cactus Plugin - Persistence Fabric + * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * * The version of the OpenAPI document: 2.0.0-rc.2 * @@ -23,4 +23,183 @@ import type { RequestArgs } from './base'; // @ts-ignore import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError } from './base'; +/** + * + * @export + * @interface ErrorExceptionResponseV1 + */ +export interface ErrorExceptionResponseV1 { + /** + * + * @type {string} + * @memberof ErrorExceptionResponseV1 + */ + 'message': string; + /** + * + * @type {string} + * @memberof ErrorExceptionResponseV1 + */ + 'error': string; +} +/** + * Response with plugin status report. + * @export + * @interface StatusResponseV1 + */ +export interface StatusResponseV1 { + /** + * Plugin instance id. + * @type {string} + * @memberof StatusResponseV1 + */ + 'instanceId': string; + /** + * True if successfully connected to the database, false otherwise. + * @type {boolean} + * @memberof StatusResponseV1 + */ + 'connected': boolean; + /** + * True if web services were correctly exported. + * @type {boolean} + * @memberof StatusResponseV1 + */ + 'webServicesRegistered': boolean; + /** + * + * @type {Array} + * @memberof StatusResponseV1 + */ + 'operationsRunning': Array; + /** + * True if block monitoring is running, false otherwise. + * @type {boolean} + * @memberof StatusResponseV1 + */ + 'monitorRunning': boolean; + /** + * Number of the last block seen by the block monitor. + * @type {number} + * @memberof StatusResponseV1 + */ + 'lastSeenBlock': number; +} +/** + * Persistence plugin operation that is tracked and returned in status report. + * @export + * @interface TrackedOperationV1 + */ +export interface TrackedOperationV1 { + /** + * Start time of the operation. + * @type {string} + * @memberof TrackedOperationV1 + */ + 'startAt': string; + /** + * Operation name. + * @type {string} + * @memberof TrackedOperationV1 + */ + 'operation': string; +} + +/** + * DefaultApi - axios parameter creator + * @export + */ +export const DefaultApiAxiosParamCreator = function (configuration?: Configuration) { + return { + /** + * + * @summary Get the status of persistence plugin for fabric + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getStatusV1: async (options: AxiosRequestConfig = {}): Promise => { + const localVarPath = `/api/v1/plugins/@hyperledger/cactus-plugin-persistence-fabric/status`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + } +}; + +/** + * DefaultApi - functional programming interface + * @export + */ +export const DefaultApiFp = function(configuration?: Configuration) { + const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration) + return { + /** + * + * @summary Get the status of persistence plugin for fabric + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getStatusV1(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getStatusV1(options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + } +}; + +/** + * DefaultApi - factory interface + * @export + */ +export const DefaultApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { + const localVarFp = DefaultApiFp(configuration) + return { + /** + * + * @summary Get the status of persistence plugin for fabric + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getStatusV1(options?: any): AxiosPromise { + return localVarFp.getStatusV1(options).then((request) => request(axios, basePath)); + }, + }; +}; + +/** + * DefaultApi - object-oriented interface + * @export + * @class DefaultApi + * @extends {BaseAPI} + */ +export class DefaultApi extends BaseAPI { + /** + * + * @summary Get the status of persistence plugin for fabric + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof DefaultApi + */ + public getStatusV1(options?: AxiosRequestConfig) { + return DefaultApiFp(this.configuration).getStatusV1(options).then((request) => request(this.axios, this.basePath)); + } +} + diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts index 3d1a9396a2..9c7dee9a40 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Hyperledger Cactus Plugin - Block Fabrick Persistence - * Scrap fabric ledger into database. Needs administrative privileges. + * Hyperledger Cactus Plugin - Persistence Fabric + * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * * The version of the OpenAPI document: 2.0.0-rc.2 * diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts index 5a6c6dd0aa..4e3d5aa9c1 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Hyperledger Cactus Plugin - Block Fabrick Persistence - * Scrap fabric ledger into database. Needs administrative privileges. + * Hyperledger Cactus Plugin - Persistence Fabric + * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * * The version of the OpenAPI document: 2.0.0-rc.2 * diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 5f4af71d03..2d33a683a3 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Hyperledger Cactus Plugin - Block Fabrick Persistence - * Scrap fabric ledger into database. Needs administrative privileges. + * Hyperledger Cactus Plugin - Persistence Fabric + * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * * The version of the OpenAPI document: 2.0.0-rc.2 * diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts index e7c8937aee..a6cf8e6ddf 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Hyperledger Cactus Plugin - Block Fabrick Persistence - * Scrap fabric ledger into database. Needs administrative privileges. + * Hyperledger Cactus Plugin - Persistence Fabric + * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * * The version of the OpenAPI document: 2.0.0-rc.2 * diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/get-runtime-error-cause.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/get-runtime-error-cause.ts deleted file mode 100644 index 2ac8bde894..0000000000 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/get-runtime-error-cause.ts +++ /dev/null @@ -1,30 +0,0 @@ -import safeStableStringify from "safe-stable-stringify"; - -export const K_NO_DATA_EXCEPTION_WAS_JUST_A_FALSY_VALUE = - "K_NO_DATA_EXCEPTION_WAS_JUST_A_FALSY_VALUE"; - -export class ErrorWithJSONMessage extends Error {} - -/** - * Get error cause for RuntimeError (instance of `Error`) - * - * TODO: Pull this out to the common package and update the corresponding PR - * with it: https://github.com/hyperledger/cacti/pull/1707 - * - * @param err unknown error type. - * @returns valid `RuntimeError` cause - */ -export function getRuntimeErrorCause(err: unknown): Error { - if (err instanceof Error) { - return err; - } else if (typeof err === "string") { - return new Error(err); - } else { - const errAsJson = safeStableStringify(err); - if (errAsJson) { - return new ErrorWithJSONMessage(errAsJson); - } else { - return new Error(K_NO_DATA_EXCEPTION_WAS_JUST_A_FALSY_VALUE); - } - } -} diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/index.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/index.ts old mode 100644 new mode 100755 diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/index.web.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/index.web.ts deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/plugin-factory-persistence-fabric.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/plugin-factory-persistence-fabric.ts index 529e569ab0..34a046bbc5 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/plugin-factory-persistence-fabric.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/plugin-factory-persistence-fabric.ts @@ -7,7 +7,7 @@ import { PluginPersistenceFabric, } from "./plugin-persistence-fabric"; -export class PluginFactoryPersistenceFabric extends PluginFactory< +export class PluginFactoryLedgerPersistence extends PluginFactory< PluginPersistenceFabric, IPluginPersistenceFabricOptions, IPluginFactoryOptions diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/plugin-persistence-fabric.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/plugin-persistence-fabric.ts index 24168126c7..9857561734 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/plugin-persistence-fabric.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/plugin-persistence-fabric.ts @@ -1,90 +1,97 @@ -import "@hyperledger/cactus-core-api"; -import { sha256 } from "js-sha256"; -import * as fabricprototypes from "fabric-protos"; +/** + * Main logic of persistence plugin for fabric data. + */ + +import type { Express } from "express"; +import { v4 as uuidv4 } from "uuid"; +import type { Subscription } from "rxjs"; +import { Mutex } from "async-mutex"; import { + Checks, Logger, LoggerProvider, LogLevelDesc, } from "@hyperledger/cactus-common"; -import { +import type { IPluginWebService, IWebServiceEndpoint, ICactusPlugin, ICactusPluginOptions, } from "@hyperledger/cactus-core-api"; - -import type { Express } from "express"; - import { - FabricSigningCredential, - FabricContractInvocationType, - GatewayOptions, + CactiBlockFullEventV1, FabricApiClient, - GetBlockResponseV1, - RunTransactionResponseType, + GatewayOptions, GetBlockResponseTypeV1, + GetChainInfoResponseV1, + WatchBlocksListenerTypeV1, } from "@hyperledger/cactus-plugin-ledger-connector-fabric"; -import PostgresDatabaseClient from "./db-client/db-client"; - import OAS from "../json/openapi.json"; - -//types and interfaces -import { AxiosResponse } from "axios"; -import { QueryResult } from "pg"; +import { StatusEndpointV1 } from "./web-services/status-endpoint-v1"; +import PostgresDatabaseClient from "./db-client/db-client"; import { - getStatusReturn, - InsertBlockDataEntryInterface, - InsertDetailedTransactionEntryInterface, -} from "./types"; + StatusResponseV1, + TrackedOperationV1, +} from "./generated/openapi/typescript-axios"; +/** + * Constructor parameter for Fabric persistence plugin. + */ export interface IPluginPersistenceFabricOptions extends ICactusPluginOptions { - gatewayOptions: GatewayOptions; apiClient: FabricApiClient; connectionString: string; logLevel: LogLevelDesc; - instanceId: string; + channelName: string; + gatewayOptions: GatewayOptions; } +/** + * Cacti persistence plugin for fabric ledgers. + * Remember to call `onPluginInit()` before using any of the plugin method, and `shutdown()` when closing the app. + */ export class PluginPersistenceFabric implements ICactusPlugin, IPluginWebService { - private log: Logger; public static readonly CLASS_NAME = "PluginPersistenceFabric"; - private dbClient: PostgresDatabaseClient; + private readonly instanceId: string; + private log: Logger; private apiClient: FabricApiClient; - private endpoints: IWebServiceEndpoint[] | undefined; + private channelName: string; + private gatewayOptions: GatewayOptions; + private watchBlocksSubscription: Subscription | undefined; + private dbClient: PostgresDatabaseClient; private isConnected = false; + private pushBlockMutex = new Mutex(); + private syncBlocksMutex = new Mutex(); private isWebServicesRegistered = false; - - // = > private lastSeenBlock = 0; private lastSeenBlock = 0; - // Last Block in Ledger - private lastBlock = 0; - - //check which blocks are missing - private missedBlocks: string[] = []; - private howManyBlocksMissing = 0; - - private ledgerChannelName = "mychannel"; - // gateway options - private gatewayOptions: GatewayOptions; - // synchronization ongoing - private synchronizationGo = true; + private endpoints: IWebServiceEndpoint[] | undefined; + private trackedOperations = new Map(); + private failedBlocks = new Set(); constructor(public readonly options: IPluginPersistenceFabricOptions) { + const fnTag = `${PluginPersistenceFabric.CLASS_NAME}#constructor()`; + Checks.truthy(options, `${fnTag} arg options`); + Checks.truthy(options.apiClient, `${fnTag} options.apiClient`); + Checks.truthy(options.instanceId, `${fnTag} options.instanceId`); + Checks.truthy( + options.connectionString, + `${fnTag} options.connectionString`, + ); + Checks.truthy(options.channelName, `${fnTag} options.channelName`); + Checks.truthy(options.gatewayOptions, `${fnTag} options.gatewayOptions`); + const level = this.options.logLevel || "INFO"; const label = PluginPersistenceFabric.CLASS_NAME; this.log = LoggerProvider.getOrCreate({ level, label }); - this.instanceId = options.instanceId; - this.gatewayOptions = options.gatewayOptions; - // this.fabricConnectorPlugin = new PluginLedgerConnectorFabric(options); - // database this.instanceId = options.instanceId; this.apiClient = options.apiClient; + this.channelName = options.channelName; + this.gatewayOptions = options.gatewayOptions; this.dbClient = new PostgresDatabaseClient({ connectionString: options.connectionString, @@ -92,35 +99,196 @@ export class PluginPersistenceFabric }); } - public async shutdown(): Promise { - this.apiClient.close(); - await this.dbClient.shutdown(); - this.isConnected = false; + /** + * Add new plugin operation that will show up in status report. + * Remember to remove this operation with `removeTrackedOperation` after it's finished. + * + * @param id unique id of the operation (use `uuid`) + * @param operation operation name to show up in the status report + */ + private addTrackedOperation(id: string, operation: string): void { + if (this.trackedOperations.has(id)) { + this.log.error(`Operation with ID ${id} is already tracked!`); + return; + } + + this.trackedOperations.set(id, { + startAt: Date.now().toString(), + operation: operation, + }); } - public getStatus(): getStatusReturn { - return { - instanceId: this.instanceId, - connected: this.isConnected, - webServicesRegistered: this.isWebServicesRegistered, - lastSeenBlock: this.lastSeenBlock, - }; + /** + * Remove operation added with `addTrackedOperation`. + * If called with non-existent operation - nothing happens. + * + * @param id unique id of the operation (use `uuid`) + */ + private removeTrackedOperation(id: string): void { + this.trackedOperations.delete(id); } /** - * Should be called before using the plugin. - * Connects to the database and initializes the plugin schema and status entry. + * Get block data from the ledger using the cacti connector. + * + * @returns Full block data including transactions (`CactiBlockFullEventV1`) */ + private async getBlockFromLedger( + blockNumber: number, + ): Promise { + const response = await this.apiClient.getBlockV1({ + channelName: this.channelName, + gatewayOptions: this.gatewayOptions, + query: { + blockNumber: blockNumber.toString(), + }, + responseType: GetBlockResponseTypeV1.CactiFullBlock, + }); - public async onPluginInit(): Promise { - await this.dbClient.connect(); - this.log.info("Connect the PostgreSQL PostgresDatabaseClient"); - await this.dbClient.initializePlugin( - PluginPersistenceFabric.CLASS_NAME, - this.instanceId, - ); - this.log.info("Plugin initialized"); - this.isConnected = true; + if ( + response && + response.status === 200 && + "cactiFullEvents" in response.data + ) { + return response.data.cactiFullEvents; + } else { + throw new Error( + `Could not get block with number ${blockNumber} from the ledger`, + ); + } + } + + /** + * Get chain info from the ledger using the cacti connector. + * + * @returns chain information (including current height and block hash) + */ + private async getChainInfoFromLedger(): Promise { + const response = await this.apiClient.getChainInfoV1({ + channelName: this.channelName, + gatewayOptions: this.gatewayOptions, + }); + + if (response && response.status === 200) { + return response.data; + } else { + throw new Error("Could not get chain information from the ledger"); + } + } + + /** + * Parse and push a new block received from the connector. + * Gap between last seen block and current one is checked and missing blocks are filled when necessary. + * + * @param block Full fabric block summary (`CactiBlockFullEventV1`) + */ + private async pushNewBlock(block: CactiBlockFullEventV1): Promise { + if (block.blockNumber <= this.lastSeenBlock) { + this.log.debug( + `Block ${block.blockNumber} already added (last seen: ${this.lastSeenBlock})`, + ); + return; + } + + // Push one block at a time, in case previous block is still being processed + // (example: filling the gap takes longer than expected) + await this.pushBlockMutex.runExclusive(async () => { + const previousBlockNumber = this.lastSeenBlock; + + try { + this.lastSeenBlock = block.blockNumber; + await this.dbClient.insertBlockData(block); + } catch (error: unknown) { + this.log.warn( + `Could not add new block #${block.blockNumber}, error:`, + error, + ); + this.addFailedBlock(block.blockNumber); + } + + const isGap = block.blockNumber - previousBlockNumber > 1; + if (isGap) { + const gapFrom = previousBlockNumber + 1; + const gapTo = block.blockNumber - 1; + try { + await this.syncBlocks(gapFrom, gapTo); + } catch (error: unknown) { + this.log.warn( + `Could not sync blocks in a gap between #${gapFrom} and #${gapTo}, error:`, + error, + ); + for (let i = gapFrom; i < gapTo; i++) { + this.addFailedBlock(i); + } + } + } + }); + } + + /** + * Add a block to failed blocks list. + * This method first ensures that the block is not present in the database. + * If it's not, new block is added to failed blocks and the plugin is out of sync. + * Failed blocks can be retried again with `syncFailedBlocks()` method. + * + * @param blockNumber block number to be added to failed blocks list. + */ + private async addFailedBlock(blockNumber: number) { + try { + const block = await this.dbClient.getBlock(blockNumber); + if (block.number !== blockNumber.toString()) { + throw new Error("Invalid response from the DB"); + } + this.log.debug( + `Block #${blockNumber} already present in DB - remove from the failed pool.`, + ); + this.failedBlocks.delete(blockNumber); + } catch (error: unknown) { + this.log.info( + `Block #${blockNumber} not found in the DB - add to the failed blocks pool.`, + ); + this.log.debug("getBlock() error message:", error); + this.failedBlocks.add(blockNumber); + } + } + + /** + * Synchronize blocks in specified range. + * Only the blocks not already present in the database from specified range will be pushed. + * + * @warn This operation can take a long time to finish if you specify a wide range! + * + * @param startBlockNumber starting block number (including) + * @param endBlockNumber ending block number (including) + */ + private async syncBlocks( + startBlockNumber: number, + endBlockNumber: number, + ): Promise { + // Only one block synchronization can run at a time to prevent data race. + await this.syncBlocksMutex.runExclusive(async () => { + this.log.info( + "Synchronize blocks from", + startBlockNumber, + "to", + endBlockNumber, + ); + + const missingBlockNumbers = await this.dbClient.getMissingBlocksInRange( + startBlockNumber, + endBlockNumber, + ); + + for (const n of missingBlockNumbers.map((r) => r.block_number)) { + try { + const block = await this.getBlockFromLedger(n); + await this.dbClient.insertBlockData(block); + } catch (error: unknown) { + this.log.warn(`Could not synchronize block #${n}, error:`, error); + this.addFailedBlock(n); + } + } + }); } public getInstanceId(): string { @@ -139,660 +307,228 @@ export class PluginPersistenceFabric return OAS; } + /** + * Should be called before using the plugin. + * Connects to the database and initializes the plugin schema and status entry. + * Fetches tokens to be monitored and stores them in local memory. + */ + public async onPluginInit(): Promise { + await this.dbClient.connect(); + + await this.dbClient.initializePlugin( + PluginPersistenceFabric.CLASS_NAME, + this.instanceId, + ); + + this.isConnected = true; + } + + /** + * Close the connection to the DB, cleanup any allocated resources. + */ + public async shutdown(): Promise { + this.stopMonitor(); + await this.dbClient.shutdown(); + this.isConnected = false; + } + + /** + * Register all the plugin endpoints on supplied `Express` server. + * + * @param app `Express.js` server. + * @returns list of registered plugin endpoints. + */ public async registerWebServices( app: Express, ): Promise { const webServices = await this.getOrCreateWebServices(); webServices.forEach((ws) => ws.registerExpress(app)); + this.isWebServicesRegistered = true; return webServices; } - // For future development + /** + * Create plugin endpoints and return them. + * If method was already called, the set of endpoints created on the first run is used. + * @returns list of plugin endpoints. + */ public async getOrCreateWebServices(): Promise { + const { log } = this; const pkgName = this.getPackageName(); if (this.endpoints) { return this.endpoints; } - this.log.info(`Creating web services for plugin ${pkgName}...`); + log.info(`Creating web services for plugin ${pkgName}...`); const endpoints: IWebServiceEndpoint[] = []; - + { + const endpoint = new StatusEndpointV1({ + connector: this, + logLevel: this.options.logLevel, + }); + endpoints.push(endpoint); + } this.endpoints = endpoints; - this.log.info(`Instantiated web svcs for plugin ${pkgName} OK`, { + log.info(`Instantiated web services for plugin ${pkgName} OK`, { endpoints, }); return endpoints; } /** - * lastBlockInLedger - * @returns this.lastBlock which is last block in ledger assuming using getBlock and node js SDK + * Get status report of this instance of persistence plugin. + * + * @returns Status report object */ - private async lastBlockInLedger( - signingCredentialInput: FabricSigningCredential, - ): Promise { - const lastBlockInChainTest = await this.apiClient.runTransactionV1({ - signingCredential: signingCredentialInput, - channelName: this.ledgerChannelName, - invocationType: FabricContractInvocationType.Call, - contractName: "qscc", - methodName: "GetChainInfo", - params: [this.ledgerChannelName.toString()], - responseType: RunTransactionResponseType.JSON, - }); - this.log.warn("lastBlockInChainTest", lastBlockInChainTest); - const parse = JSON.parse(lastBlockInChainTest.data.functionOutput); - const blockProto = JSON.stringify( - fabricprototypes.common.BlockchainInfo.decode(parse.data), - ); - const lastBlockPreview = JSON.parse(blockProto); - this.log.info("lastBlockPreview ", lastBlockPreview.height); - - const lastBlock = lastBlockPreview.height; - return lastBlock; + public getStatus(): StatusResponseV1 { + return { + instanceId: this.instanceId, + connected: this.isConnected, + webServicesRegistered: this.isWebServicesRegistered, + operationsRunning: Array.from(this.trackedOperations.values()), + monitorRunning: this.watchBlocksSubscription !== undefined, + lastSeenBlock: this.lastSeenBlock, + }; } - //test /** - * lastBlockInLedgerWithoutFabricProto - * @returns this.lastBlock which is last block in ledger assuming using getBlock and node js SDK - */ - private async lastBlockInLedgerWithoutFabricProto(): Promise { - let tempBlockNumber = this.lastBlock; - let blockNumber = tempBlockNumber.toString(); - let block: AxiosResponse = - null as unknown as AxiosResponse; - let moreBlocks = true; - do { - try { - block = await this.apiClient.getBlockV1({ - channelName: this.ledgerChannelName, - gatewayOptions: this.gatewayOptions, - query: { - blockNumber, - }, - }); - } catch (error) { - this.log.info("Last block in ledger", tempBlockNumber - 1); - moreBlocks = false; - } - - if (block?.status == 200) { - if (moreBlocks) { - // Update information about last Block in Ledger - this.lastBlock - this.lastBlock = tempBlockNumber; - tempBlockNumber = tempBlockNumber + 1; - blockNumber = tempBlockNumber.toString(); - } - } else { - moreBlocks = false; - } - } while (moreBlocks); - return this.lastBlock; - } - - /** Synchronization of blocks - * - Synchronize entire first edgeOfLedger blocks of ledger state - * @param edgeOfLedger defines which part of blockchain do we want to include in database - * with the database as a good start and to check if everything is correctly set. - * @returns string promise done after finishing the process - * // future changes - parameter to set which part of blokchain to move to database - */ - - private async initialBlocksSynchronization( - edgeOfLedger: number, - ): Promise { - let tempBlockNumber = 0; - let blockNumber = tempBlockNumber.toString(); - let block: AxiosResponse = - null as unknown as AxiosResponse; - let moreBlocks = true; - do { - try { - block = await this.apiClient.getBlockV1({ - channelName: this.ledgerChannelName, - gatewayOptions: this.gatewayOptions, - query: { - blockNumber, - }, - }); - } catch (error) { - this.log.info("Last block in ledger", tempBlockNumber - 1); - moreBlocks = false; - } - - if (block?.status == 200) { - const logBlock = JSON.stringify(block.data); - - // Put scrapped block into database - this.log.info(logBlock); - this.log.info("Block number: ", blockNumber); - - if (moreBlocks) { - await this.migrateBlockNrWithTransactions(blockNumber); - this.lastSeenBlock = tempBlockNumber; - this.lastBlock = tempBlockNumber; - tempBlockNumber = tempBlockNumber + 1; - blockNumber = tempBlockNumber.toString(); - if (tempBlockNumber > edgeOfLedger) { - moreBlocks = false; - } - } - } else { - moreBlocks = false; - } - } while (moreBlocks); - return "done"; - } - - /** Synchronization of blocks - * - Synchronize entire ledger state - * with the database as far as the lastBlockInLedger shows ( triggered once ) - * @returns string promise lastBlock number after finishing the process + * Start the block monitoring process. New blocks from the ledger will be parsed and pushed to the database. + * Use `stopMonitor()` to cancel this operation. * + * @warn + * Before the monitor starts, the database will be synchronized with current ledger state. + * This operation can take a while, but will ensure that the ledger archive is complete. + * + * @param onError callback method that will be called on error. */ - public async syncAll( - signingCredential: FabricSigningCredential, - ): Promise { - this.lastSeenBlock = await this.dbClient.getMaxBlockNumber(); - let tempBlockNumber = this.lastSeenBlock; - let blockNumber = tempBlockNumber.toString(); - this.lastBlock = await this.lastBlockInLedger(signingCredential); - let block: AxiosResponse = - null as unknown as AxiosResponse; - this.synchronizationGo = true; - do { - if (this.lastBlock > this.lastSeenBlock) { - try { - block = await this.apiClient.getBlockV1({ - channelName: this.ledgerChannelName, - gatewayOptions: this.gatewayOptions, - query: { - blockNumber, - }, - }); - } catch (error) { - this.log.info("Last block in ledger", tempBlockNumber - 1); - } + public async startMonitor(onError?: (err: unknown) => void): Promise { + // Synchronize the current DB state + this.lastSeenBlock = await this.syncAll(); + + const blocksObservable = this.apiClient.watchBlocksV1({ + channelName: this.channelName, + gatewayOptions: this.gatewayOptions, + type: WatchBlocksListenerTypeV1.CactiFullBlock, + }); - if (block?.status == 200) { - await this.migrateBlockNrWithTransactions(blockNumber); - this.lastSeenBlock = tempBlockNumber; - tempBlockNumber = tempBlockNumber + 1; - blockNumber = tempBlockNumber.toString(); - } - } else { - this.missedBlocks.push(blockNumber.toString()); - this.howManyBlocksMissing = this.howManyBlocksMissing + 1; - } - if (this.synchronizationGo && this.lastSeenBlock >= this.lastBlock) { - this.synchronizationGo = false; - } - } while (this.synchronizationGo); - return 1; - } + if (!blocksObservable) { + throw new Error( + "Could not get a valid blocks observable in startMonitor", + ); + } - /** Synchronization of blocks - * - Synchronize entire ledger state - * with the database as far as the lastBlockInLedger shows ( triggered more than once ) - * @returns string promise lastBlock number after finishing the process - * - */ - // NOTE: this function can loop into very long almost infinite loop or even - // infinite loop - public async startMonitor( - signingCredential: FabricSigningCredential, - onError?: (err: unknown) => void, - ): Promise { - this.lastSeenBlock = await this.dbClient.getMaxBlockNumber(); - this.synchronizationGo = true; - let tempBlockNumber = this.lastSeenBlock; //last block migrated to database - let blockNumber = tempBlockNumber.toString(); - this.lastBlock = await this.lastBlockInLedger(signingCredential); - let block: AxiosResponse = - null as unknown as AxiosResponse; - let checkBlock = true; - do { - if (this.lastBlock > this.lastSeenBlock) { + this.watchBlocksSubscription = blocksObservable.subscribe({ + next: async (event) => { try { - block = await this.apiClient.getBlockV1({ - channelName: this.ledgerChannelName, - gatewayOptions: this.gatewayOptions, - query: { - blockNumber, - }, - }); - } catch (error) { - if (onError) { - onError(error); - } - } - - if (block?.status == 200) { - const isThisBlockPresent = - await this.dbClient.isThisBlockInDB(tempBlockNumber); + this.log.debug("Received new block."); - if (isThisBlockPresent.rowCount === 0) { - checkBlock = true; - } else { - checkBlock = false; // this block is in database so skip it + if (!event || !("cactiFullEvents" in event)) { + this.log.warn("Received invalid block ledger event:", event); + return; } - if (checkBlock) { - await this.migrateBlockNrWithTransactions(blockNumber); - this.lastSeenBlock = Number(blockNumber); - if (tempBlockNumber > this.lastBlock) { - this.lastBlock = tempBlockNumber; - } - } - if (!this.synchronizationGo) { - checkBlock = false; + await this.pushNewBlock(event.cactiFullEvents); + } catch (error: unknown) { + this.log.error("Unexpected error when pushing new block:", error); + } + }, + error: (err) => { + this.log.error("Error when watching for new blocks, err:", err); + + if (onError) { + try { + onError(err); + } catch (error: unknown) { + this.log.error( + "Unexpected error in onError monitor handler:", + error, + ); } - tempBlockNumber = tempBlockNumber + 1; } - - blockNumber = tempBlockNumber.toString(); - } - this.lastBlock = await this.lastBlockInLedger(signingCredential); - } while (this.synchronizationGo); - return "stopped"; + }, + complete: () => { + this.log.info("Watch completed"); + if (this.watchBlocksSubscription) { + this.watchBlocksSubscription.unsubscribe(); + } + this.watchBlocksSubscription = undefined; + }, + }); } - private async changeSynchronization(): Promise { - if (this.synchronizationGo) { - this.synchronizationGo = false; - } else { - this.synchronizationGo = true; + /** + * Stop the block monitoring process. + * If the monitoring wasn't running - nothing happens. + */ + public stopMonitor(): void { + if (this.watchBlocksSubscription) { + this.watchBlocksSubscription.unsubscribe(); + this.watchBlocksSubscription = undefined; + this.log.info("stopMonitor(): Done."); } - return this.synchronizationGo; } - private async getBlockFromLedger(blockNumber: string): Promise { - const block: AxiosResponse = - await this.apiClient.getBlockV1({ - channelName: this.ledgerChannelName, - gatewayOptions: this.gatewayOptions, - query: { - blockNumber, - }, - responseType: GetBlockResponseTypeV1.Full, - }); - - const tempBlockParse = block.data; - - return tempBlockParse; - } - - // Migration of block nr with transaction inside - // NOTE that each block have at least 1 transaction endorsement /** + * Walk through all the blocks that could not be synchronized with the DB for some reasons and try pushing them again. + * Blocks will remain on "failed blocks" list until it's successfully pushed to the database. * - * @param blockNumber this is parameter of function which set - * block number to be moved from ledger to database - * @returns true a boolean which indicates successfull migration + * @returns list of restored blocks */ - private async migrateBlockNrWithTransactions( - blockNumber: string, - ): Promise { - const block: AxiosResponse = - await this.apiClient.getBlockV1({ - channelName: this.ledgerChannelName, - gatewayOptions: this.gatewayOptions, - query: { - blockNumber, - }, - }); - - const tempBlockParse: any = JSON.parse(JSON.stringify(block.data)); - - const hash = Buffer.from( - tempBlockParse.decodedBlock.header.data_hash.data, - ).toString("hex"); - - const block_data = { - fabric_block_id: hash, - fabric_block_num: Number(blockNumber), - fabric_block_data: JSON.stringify(block.data), - }; - - // Put scrapped block into database - const txLen = tempBlockParse.decodedBlock.data.data.length; - if (txLen === 0) { - return false; - } - for (let txIndex = 0; txIndex < txLen; txIndex++) { - const transactionDataObject = - tempBlockParse.decodedBlock.data.data[txIndex]; - const transactionDataStringifies = JSON.stringify(transactionDataObject); - - let txid = ""; - - const detailedTxData: InsertDetailedTransactionEntryInterface = { - block_number: "", - block_id: "", - transaction_id: "", - createdat: "", - chaincodename: "", - status: 0, - creator_msp_id: "", - endorser_msp_id: "", - chaincode_id: "", - type: "", - read_set: "", - write_set: "", - channel_id: "", - payload_extension: "", - creator_id_bytes: "", - creator_nonce: "", - chaincode_proposal_input: "", - tx_response: "", - payload_proposal_hash: "", - endorser_id_bytes: "", - endorser_signature: "", - }; - - let rwset; - let readSet; - let writeSet; - let chaincodeID; - let status; - - let envelope_signature = transactionDataObject.signature; - if (envelope_signature !== undefined) { - envelope_signature = Buffer.from(envelope_signature).toString("hex"); - } - detailedTxData.payload_extension = - transactionDataObject.payload.header.channel_header.extension; - if (detailedTxData.payload_extension !== undefined) { - detailedTxData.payload_extension = Buffer.from( - detailedTxData.payload_extension, - ).toString("hex"); - } - detailedTxData.creator_nonce = - transactionDataObject.payload.header.signature_header.nonce; - if (detailedTxData.creator_nonce !== undefined) { - detailedTxData.creator_nonce = Buffer.from( - detailedTxData.creator_nonce, - ).toString("hex"); - } - - const creator_id_bytes = - transactionDataObject.payload.header.signature_header.creator.id_bytes.data.toString(); - if (transactionDataObject.payload.data.actions !== undefined) { - chaincodeID = - transactionDataObject.payload.data.actions[0].payload.action - .proposal_response_payload.extension; - status = - transactionDataObject.payload.data.actions[0].payload.action - .proposal_response_payload.extension.response.status; - this.log.info("rwset :", JSON.stringify(rwset)); - rwset = - transactionDataObject.payload.data.actions[0].payload.action - .proposal_response_payload.extension.results.ns_rwset; - - if (rwset !== undefined) { - readSet = rwset.reads; - writeSet = rwset.writes; - detailedTxData.read_set = JSON.stringify(readSet, null, 2); - detailedTxData.write_set = JSON.stringify(writeSet, null, 2); - } else { - readSet = " as usual "; - writeSet = " as usual "; - } + public async syncFailedBlocks(): Promise { + const blocksRestored: number[] = []; + const operationId = uuidv4(); + this.addTrackedOperation(operationId, "syncFailedBlocks"); - detailedTxData.chaincode_proposal_input = - transactionDataObject.payload.data.actions[0].payload.chaincode_proposal_payload.input.chaincode_spec.input.args; - if (detailedTxData.chaincode_proposal_input !== undefined) { - let inputs = ""; - for (const input of detailedTxData.chaincode_proposal_input) { - inputs = - (inputs === "" ? inputs : `${inputs}`) + - "," + - Buffer.from(input).toString("hex"); - } - detailedTxData.chaincode_proposal_input = inputs; - } - // endorser_signature = - detailedTxData.endorser_signature = - transactionDataObject.payload.data.actions[0].payload.action.endorsements[0].signature; - if (detailedTxData.endorser_signature !== undefined) { - detailedTxData.endorser_signature = Buffer.from( - detailedTxData.endorser_signature, - ).toString("hex"); + try { + for (const n of this.failedBlocks) { + try { + const block = await this.getBlockFromLedger(n); + await this.dbClient.insertBlockData(block); + this.failedBlocks.delete(n); + blocksRestored.push(n); + } catch (error: unknown) { + this.log.warn(`Could not sync failed block #${n}, error:`, error); } - // payload_proposal_hash = transactionDataObject.payload.data.actions[0].payload.action.proposal_response_payload.proposal_hash.data.toString( - detailedTxData.payload_proposal_hash = - transactionDataObject.payload.data.actions[0].payload.action.proposal_response_payload.proposal_hash.data.toString( - "hex", - ); - // endorser_id_bytes = transactionDataObject.payload.data.actions[0].payload.action.endorsements[0].endorser.id_bytes.data.toString( - detailedTxData.endorser_id_bytes = - transactionDataObject.payload.data.actions[0].payload.action.endorsements[0].endorser.id_bytes.data.toString( - "hex", - ); - - detailedTxData.endorser_msp_id = - tempBlockParse.decodedBlock.data.data[ - txIndex - ].payload.data.actions[0].payload.action.endorsements[0].endorser.mspid; - detailedTxData.tx_response = - tempBlockParse.decodedBlock.data.data[ - txIndex - ].payload.data.actions[0].payload.action.proposal_response_payload.extension; - } - - if ( - transactionDataObject.payload.header.channel_header.typeString === - "CONFIG" - ) { - txid = sha256(transactionDataStringifies); - readSet = - transactionDataObject.payload.data.last_update.payload?.data - .config_update.read_set; - writeSet = - transactionDataObject.payload.data.last_update.payload?.data - .config_update.write_set; - } else { - txid = - tempBlockParse.decodedBlock.data.data[txIndex].payload.header - .channel_header.tx_id; } - const chaincode_id: string = "" + JSON.stringify(chaincodeID); - - let chaincodename = ""; - // checking if proposal_response_payload is present and operational - let checker = ""; - const BlockNumberIn: string = blockNumber; - try { - checker = - tempBlockParse.decodedBlock.data.data[txIndex].payload.data.actions[0] - .payload.action.proposal_response_payload; - } catch (error) {} - - if (checker !== "") { - chaincodename = - tempBlockParse.decodedBlock.data.data[txIndex].payload.data.actions[0] - .payload.action.proposal_response_payload.extension.chaincode_id - .name; - } else { - chaincodename = " "; + if (blocksRestored) { + this.log.info("Restored following failed blocks:", blocksRestored); } - - await this.dbClient.insertDetailedTransactionEntry({ - block_number: BlockNumberIn, - block_id: hash, - transaction_id: txid, - createdat: - tempBlockParse.decodedBlock.data.data[txIndex].payload.header - .channel_header.timestamp, - chaincodename: chaincodename, - status: status, - creator_msp_id: - tempBlockParse.decodedBlock.data.data[txIndex].payload.header - .signature_header.creator.mspid, - endorser_msp_id: detailedTxData.endorser_msp_id, - chaincode_id: chaincode_id, //tempBlockParse.decodedBlock.data.data[0].payload.data.payload.chaincode_proposal_payload.input.chaincode_spec.chaincode_id, - type: tempBlockParse.decodedBlock.data.data[txIndex].payload.header - .channel_header.typeString, - read_set: detailedTxData.read_set, //tempBlockParse.decodedBlock.data.data[0].payload.data.actions[0].payload.action.proposal_response_payload, - write_set: detailedTxData.write_set, //tempBlockParse.decodedBlock.data.data[0].payload.data.actions[0].payload.chaincode_proposal_payload.input.chaincode_spec.input, - channel_id: - tempBlockParse.decodedBlock.data.data[txIndex].payload.header - .channel_header.channel_id, - payload_extension: detailedTxData.payload_extension, //tempBlockParse.decodedBlock.data.data[0].payload.data.actions[0].payload.action.proposal_response_payload.extension, - creator_id_bytes: creator_id_bytes, //tempBlockParse.decodedBlock.data.data[0].payload.header.signature_header.creator.id_bytes.data, - creator_nonce: detailedTxData.creator_nonce, //tempBlockParse.decodedBlock.data.data[0].payload.header.signature_header.nonce, - chaincode_proposal_input: detailedTxData.chaincode_proposal_input, //tempBlockParse.decodedBlock.data.data[0].payload.data.actions.payload.chaincode_proposal_payload.input.chaincode_spec.input, - tx_response: detailedTxData.tx_response, - payload_proposal_hash: detailedTxData.payload_proposal_hash, //tempBlockParse.decodedBlock.data.data[0].payload.data.actions[0].payload.action.proposal_response_payload.proposal.hash.data, - endorser_id_bytes: detailedTxData.endorser_id_bytes, //tempBlockParse.decodedBlock.data.data[0].payload.data.actions[0].payload.action.endorsements.endorser.id_bytes.data, - endorser_signature: detailedTxData.endorser_signature, //tempBlockParse.decodedBlock.data.data[0].payload.data.actions[0].payload.action.endorsements.signature.data, - }); - - await this.dbClient.insertBlockTransactionEntry({ - transaction_id: txid, - fabric_block_id: hash, - fabric_transaction_data: - tempBlockParse.decodedBlock.data.data[txIndex].payload.data.actions, - }); + } finally { + this.removeTrackedOperation(operationId); } - await this.dbClient.insertBlockDataEntry(block_data); - - if (Number(blockNumber) > this.lastSeenBlock) { - //update last seen and migrated to database block - this.lastSeenBlock = Number(blockNumber); - } - - await this.dbClient.insertBlockDetails({ - fabric_block_id: hash, - fabric_blocknum: blockNumber, - fabric_datahash: hash, - fabric_tx_count: txLen, - fabric_createdat: - tempBlockParse.decodedBlock.data.data[0].payload.header.channel_header - .timestamp, - fabric_prev_blockhash: tempBlockParse.decodedBlock.header.previous_hash, - fabric_channel_id: - tempBlockParse.decodedBlock.data.data[0].payload.header.channel_header - .channel_id, - }); - - if (Number(blockNumber) > this.lastSeenBlock) { - //update last seen and migrated to database block - this.lastSeenBlock = Number(blockNumber); - } - - return true; - } - /** - * - * @param limitLastBlockConsidered this parameter - set the last block in ledger which we consider valid by our party and synchronize only to this point in ledger -If some blocks above this number are already in database they will not be removed. - * @returns number which is this.lastBlock , artificially set lastBlock in ledger - */ - private setLastBlockConsidered(limitLastBlockConsidered: number): number { - this.lastBlock = limitLastBlockConsidered; - return this.lastBlock; + return blocksRestored; } /** + * Synchronize entire ledger state with the database. + * - Synchronize all blocks that failed to synchronize until now. + * - Detect any other missing blocks between the database and the ledger, push them to the DB. + * + * @warn This operation can take a long time to finish! * - * @returns number blocks missing according to last run of function which checks missing blocks - * whichBlocksAreMissingInDdSimple + * @returns latest synchronized block number. */ - private showHowManyBlocksMissing(): number { - return this.howManyBlocksMissing; - } + public async syncAll(): Promise { + const operationId = uuidv4(); + this.addTrackedOperation(operationId, "syncAll"); - /** - * - Walk through all the blocks - * that could not be synchronized with the DB for some reasons and list them - * @returns number of missing blocks - */ - private async whichBlocksAreMissingInDdSimple(): Promise { - this.howManyBlocksMissing = 0; + try { + this.log.info("syncAll() started..."); - for (let iterator: number = this.lastBlock; iterator >= 0; iterator--) { - const isThisBlockPresent = await this.dbClient.isThisBlockInDB(iterator); + await this.syncFailedBlocks(); - if (isThisBlockPresent.rowCount === 0) { - this.missedBlocks.push(iterator.toString()); - this.howManyBlocksMissing += 1; - } - } + const { height } = await this.getChainInfoFromLedger(); + const latestBlock = height - 1; // Height points to next block, not the latest - this.log.info("missedBlocks", JSON.stringify(this.missedBlocks)); - return this.howManyBlocksMissing; - } - /** - * synchronization of missing Blocks - * run function whichBlocksAreMissingInDdSimple before using this one - * @returns number of missing blocks if any , should return 0 - */ - public async syncFailedBlocks(): Promise { - if (this.howManyBlocksMissing > 0) { - let missedIndex = 0; - let blockNumber: string = this.missedBlocks[missedIndex]; - let moreBlocks = true; - this.log.info("database start Synchronization"); - do { - blockNumber = this.missedBlocks[missedIndex]; - const block: AxiosResponse = - await this.apiClient.getBlockV1({ - channelName: this.ledgerChannelName, - gatewayOptions: this.gatewayOptions, - query: { - blockNumber, - }, - }); - - if (block.status == 200) { - // Put scrapped block into database - const migrateBlock = - await this.migrateBlockNrWithTransactions(blockNumber); - if (migrateBlock) { - const delSynchronized = this.missedBlocks.indexOf(blockNumber); - delete this.missedBlocks[delSynchronized]; - } - missedIndex = missedIndex + 1; - this.howManyBlocksMissing = this.howManyBlocksMissing - 1; - } + await this.syncBlocks(1, latestBlock); - if (this.howManyBlocksMissing <= 0) { - moreBlocks = false; - } - } while (moreBlocks); + return latestBlock; + } finally { + this.removeTrackedOperation(operationId); } - this.log.info("database Is in Synchronization"); - return this.howManyBlocksMissing; - } - - /** migrateNextBlock - * tries to migrate next block according to lastBlock information stored in plugin - */ - private async migrateNextBlock(): Promise { - const toMigrate: number = this.lastBlock + 1; - try { - await this.migrateBlockNrWithTransactions(toMigrate.toString()); - this.lastSeenBlock = toMigrate; - return toMigrate; - } catch (error: unknown) { - const message = `Parsing block #${toMigrate} failed: ${error}`; - this.log.info(message); - } - return 0; - } - - private async insertBlockDataEntry( - data: InsertBlockDataEntryInterface, - ): Promise { - console.log("insert Block Data Entry"); - const test = this.dbClient.insertBlockDataEntry(data); - - return test; } } diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/public-api.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/public-api.ts old mode 100644 new mode 100755 index dcc2c47c6c..dfd43cb263 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/public-api.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/public-api.ts @@ -1,9 +1,7 @@ -import { IPluginFactoryOptions } from "@hyperledger/cactus-core-api"; -import * as OpenApiJson from "../json/openapi.json"; -export { OpenApiJson }; -import { PluginFactoryPersistenceFabric } from "./plugin-factory-persistence-fabric"; -export { PluginFactoryPersistenceFabric } from "./plugin-factory-persistence-fabric"; +import type { IPluginFactoryOptions } from "@hyperledger/cactus-core-api"; +import { PluginFactoryLedgerPersistence } from "./plugin-factory-persistence-fabric"; +export { PluginFactoryLedgerPersistence } from "./plugin-factory-persistence-fabric"; export { PluginPersistenceFabric, IPluginPersistenceFabricOptions, @@ -11,6 +9,6 @@ export { export async function createPluginFactory( pluginFactoryOptions: IPluginFactoryOptions, -): Promise { - return new PluginFactoryPersistenceFabric(pluginFactoryOptions); +): Promise { + return new PluginFactoryLedgerPersistence(pluginFactoryOptions); } diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/types.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/types.ts deleted file mode 100644 index a67650ecae..0000000000 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/types.ts +++ /dev/null @@ -1,59 +0,0 @@ -export interface BlockDataResponse { - decodedBlock: { - header: Record; - data: { data: Record[] }; - metadata: Record; - }; -} - -export interface getStatusReturn { - instanceId: string; - connected: boolean; - webServicesRegistered: boolean; - lastSeenBlock: number; -} - -// db types -export interface InsertBlockDataEntryInterface { - fabric_block_id: string; - fabric_block_num: number; - fabric_block_data: string; -} -export interface InsertBlockDetailsInterface { - fabric_block_id: string; - fabric_blocknum: string; - fabric_datahash: string; - fabric_tx_count: number; - fabric_createdat: string; - fabric_prev_blockhash: string; - fabric_channel_id: string; -} - -export interface InsertBlockTransactionEntryInterface { - transaction_id: string; - fabric_block_id: string; - fabric_transaction_data: string; -} -export interface InsertDetailedTransactionEntryInterface { - block_number: string; - block_id: string; - transaction_id: string; - createdat: string; - chaincodename: string; - status: number; - creator_msp_id: string; - endorser_msp_id: string; - chaincode_id: string; - type: string; - read_set: string; - write_set: string; - channel_id: string; - payload_extension: string; - creator_id_bytes: string; - creator_nonce: string; - chaincode_proposal_input: string; - tx_response: string; - payload_proposal_hash: string; - endorser_id_bytes: string; - endorser_signature: string; -} diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/web-services/status-endpoint-v1.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/web-services/status-endpoint-v1.ts new file mode 100644 index 0000000000..e618b6dd28 --- /dev/null +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/web-services/status-endpoint-v1.ts @@ -0,0 +1,107 @@ +/** + * OpenAPI endpoint (GET) for reading status of the persistence plugin. + */ + +import { + Logger, + Checks, + LogLevelDesc, + LoggerProvider, + IAsyncProvider, +} from "@hyperledger/cactus-common"; +import type { + IEndpointAuthzOptions, + IExpressRequestHandler, + IWebServiceEndpoint, +} from "@hyperledger/cactus-core-api"; +import { + handleRestEndpointException, + registerWebServiceEndpoint, +} from "@hyperledger/cactus-core"; + +import { PluginPersistenceFabric } from "../plugin-persistence-fabric"; +import OAS from "../../json/openapi.json"; + +import type { Express, Request, Response } from "express"; + +export interface IStatusEndpointV1Options { + logLevel?: LogLevelDesc; + connector: PluginPersistenceFabric; +} + +/** + * OpenAPI endpoint (GET) for reading status of the persistence plugin. + */ +export class StatusEndpointV1 implements IWebServiceEndpoint { + public static readonly CLASS_NAME = "StatusEndpointV1"; + + private readonly log: Logger; + + public get className(): string { + return StatusEndpointV1.CLASS_NAME; + } + + constructor(public readonly options: IStatusEndpointV1Options) { + const fnTag = `${this.className}#constructor()`; + Checks.truthy(options, `${fnTag} arg options`); + Checks.truthy(options.connector, `${fnTag} arg options.connector`); + + const level = this.options.logLevel || "INFO"; + const label = this.className; + this.log = LoggerProvider.getOrCreate({ level, label }); + } + + public getOasPath(): any { + return OAS.paths[ + "/api/v1/plugins/@hyperledger/cactus-plugin-persistence-fabric/status" + ]; + } + + public getPath(): string { + const apiPath = this.getOasPath(); + return apiPath.get["x-hyperledger-cacti"].http.path; + } + + public getVerbLowerCase(): string { + const apiPath = this.getOasPath(); + return apiPath.get["x-hyperledger-cacti"].http.verbLowerCase; + } + + public getOperationId(): string { + return this.getOasPath().get.operationId; + } + + getAuthorizationOptionsProvider(): IAsyncProvider { + // TODO: make this an injectable dependency in the constructor + return { + get: async () => ({ + isProtected: true, + requiredRoles: [], + }), + }; + } + + public async registerExpress( + expressApp: Express, + ): Promise { + await registerWebServiceEndpoint(expressApp, this); + return this; + } + + public getExpressRequestHandler(): IExpressRequestHandler { + return this.handleRequest.bind(this); + } + + public async handleRequest(_req: Request, res: Response): Promise { + const reqTag = `${this.getVerbLowerCase()} - ${this.getPath()}`; + this.log.debug(reqTag); + + try { + const resBody = this.options.connector.getStatus(); + res.status(200).json(resBody); + } catch (ex) { + const errorMsg = `Crash while serving ${reqTag}`; + handleRestEndpointException({ errorMsg, log: this.log, error: ex, res }); + } + } +} diff --git a/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_blocks.sql b/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_blocks.sql deleted file mode 100644 index 30e245c2bd..0000000000 --- a/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_blocks.sql +++ /dev/null @@ -1,8 +0,0 @@ -INSERT INTO fabric_blocks (fabric_block_id, fabric_blocknum, fabric_txcount, fabric_createdat, fabric_datahash, fabric_prev_blockhash, fabric_channel_id) VALUES ('4f29efcfd6c05327a0ddb12de4a626ad938912146608dc617fdc42a6c7e53878', '5', '1', '2023-02-27 13:52:10.374', '4f29efcfd6c05327a0ddb12de4a626ad938912146608dc617fdc42a6c7e53878', '"{""type"":""Buffer"",""data"":[31,19,5,241,106,31,204,227,151,84,238,12,68,188,158,181,81,95,194,45,203,148,109,80,146,81,254,14,219,56,35,80]}"', 'mychannel'); -INSERT INTO fabric_blocks (fabric_block_id, fabric_blocknum, fabric_txcount, fabric_createdat, fabric_datahash, fabric_prev_blockhash, fabric_channel_id) VALUES ('cd1e25259230157f7e0bdf0615b69e343979979e5d34ca225c8e13f615494792', '6', '2', '2023-02-27 13:52:13.785', 'cd1e25259230157f7e0bdf0615b69e343979979e5d34ca225c8e13f615494792', '"{""type"":""Buffer"",""data"":[54,27,150,103,112,224,173,205,227,147,3,107,28,234,167,181,252,25,123,166,160,237,185,156,62,174,242,161,180,235,182,5]}"', 'mychannel'); -INSERT INTO fabric_blocks (fabric_block_id, fabric_blocknum, fabric_txcount, fabric_createdat, fabric_datahash, fabric_prev_blockhash, fabric_channel_id) VALUES ('2b51ef5072f568b1618974e1fd4242b04221e96f859213f67d8079c7d8c19544', '7', '2', '2023-02-27 13:52:16.76', '2b51ef5072f568b1618974e1fd4242b04221e96f859213f67d8079c7d8c19544', '"{""type"":""Buffer"",""data"":[50,159,158,0,52,143,129,5,207,65,230,105,177,25,242,141,215,248,121,27,92,187,139,54,246,210,8,205,55,118,244,82]}"', 'mychannel'); -INSERT INTO fabric_blocks (fabric_block_id, fabric_blocknum, fabric_txcount, fabric_createdat, fabric_datahash, fabric_prev_blockhash, fabric_channel_id) VALUES ('51a889cce3c54b4531d8d7ce4af5a65f76dde601f198ea9a27c12bb5e193598f', '8', '2', '2023-02-27 13:52:19.299', '51a889cce3c54b4531d8d7ce4af5a65f76dde601f198ea9a27c12bb5e193598f', '"{""type"":""Buffer"",""data"":[95,201,55,65,141,205,52,235,115,29,163,29,32,26,244,21,180,13,161,238,62,38,12,175,200,103,190,136,14,252,253,170]}"', 'mychannel'); -INSERT INTO fabric_blocks (fabric_block_id, fabric_blocknum, fabric_txcount, fabric_createdat, fabric_datahash, fabric_prev_blockhash, fabric_channel_id) VALUES ('ad7995fd0d7098688161b3abf4fb50b27f82d4b5faa7dacbbdaa92ee48d87438', '9', '3', '2023-02-27 13:52:21.726', 'ad7995fd0d7098688161b3abf4fb50b27f82d4b5faa7dacbbdaa92ee48d87438', '"{""type"":""Buffer"",""data"":[26,160,44,56,152,105,168,134,33,40,7,158,17,154,83,229,171,21,25,187,199,253,167,137,44,229,165,147,133,17,239,17]}"', 'mychannel'); -INSERT INTO fabric_blocks (fabric_block_id, fabric_blocknum, fabric_txcount, fabric_createdat, fabric_datahash, fabric_prev_blockhash, fabric_channel_id) VALUES ('a8e5b8e1b473fb2b90d940806b8770b985f525ef354233e1fd10f530e31712b3', '10', '3', '2023-02-27 13:52:24.27', 'a8e5b8e1b473fb2b90d940806b8770b985f525ef354233e1fd10f530e31712b3', '"{""type"":""Buffer"",""data"":[47,136,43,121,61,27,207,221,216,55,103,6,125,30,123,116,155,16,61,100,210,103,221,181,208,162,93,219,254,39,26,234]}"', 'mychannel'); -INSERT INTO fabric_blocks (fabric_block_id, fabric_blocknum, fabric_txcount, fabric_createdat, fabric_datahash, fabric_prev_blockhash, fabric_channel_id) VALUES ('31f1731f9304b37da0523dfe69c0c816132807cefe9776bef2ea7f5fef9c9626', '11', '3', '2023-02-27 13:52:26.73', '31f1731f9304b37da0523dfe69c0c816132807cefe9776bef2ea7f5fef9c9626', '"{""type"":""Buffer"",""data"":[44,39,218,176,251,187,139,169,101,35,154,88,9,170,78,154,58,14,177,251,61,135,108,129,62,154,127,35,205,127,121,82]}"', 'mychannel'); -INSERT INTO fabric_blocks (fabric_block_id, fabric_blocknum, fabric_txcount, fabric_createdat, fabric_datahash, fabric_prev_blockhash, fabric_channel_id) VALUES ('f17f98cafdc5f96ac6818399ea79ab2f6d8a227c689e951ca76a97309f9b0611', '12', '3', '2023-02-27 13:52:29.41', 'f17f98cafdc5f96ac6818399ea79ab2f6d8a227c689e951ca76a97309f9b0611', '"{""type"":""Buffer"",""data"":[150,133,191,242,110,205,41,50,98,120,238,55,31,217,68,143,87,245,0,145,150,135,49,227,147,230,150,21,68,217,51,87]}"', 'mychannel'); diff --git a/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_blocks_entry.sql b/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_blocks_entry.sql deleted file mode 100644 index d8164d4116..0000000000 --- a/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_blocks_entry.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO "fabric_blocks_entry_rows" ("fabric_block_id", "fabric_block_num", "fabric_block_data") VALUES ('60,151,148,151,98,35,37,51,178,96,77,171,93,62,116,101,122,242,158,92,180,206,59,90,227,2,211,215,226,30,136,170', '8', '"{""decodedBlock"":{""header"":{""number"":{""low"":8,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[166,113,255,82,207,25,223,199,146,17,234,157,231,161,203,202,202,56,49,85,201,120,200,113,45,140,13,226,57,189,83,110]},""data_hash"":{""type"":""Buffer"",""data"":[60,151,148,151,98,35,37,51,178,96,77,171,93,62,116,101,122,242,158,92,180,206,59,90,227,2,211,215,226,30,136,170]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,33,208,213,21,156,133,11,239,152,6,171,54,80,227,51,140,69,156,190,201,128,251,146,24,172,3,50,234,222,146,25,186,2,32,47,200,67,158,160,187,20,61,92,104,102,103,207,146,12,93,30,237,225,17,172,27,14,76,95,182,155,167,118,123,154,228]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:42:55.324Z"",""channel_id"":""mychannel"",""tx_id"":""015912a039acd6927194aff587df58d63ef030df079f28b2f13e8c93d7fb783f"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[239,180,231,185,6,142,61,53,76,114,180,84,74,122,208,31,187,66,65,168,212,192,0,11]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[239,180,231,185,6,142,61,53,76,114,180,84,74,122,208,31,187,66,65,168,212,192,0,11]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[105,5,160,171,30,2,4,73,167,148,211,49,160,213,69,178,108,46,11,111,153,48,129,46,180,7,209,96,32,200,212,86]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,78,108,115,116,88,51,87,119,48,69,120,119,83,83,122,80,73,115,117,98,121,99,100,67,113,53,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,77,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,81,119,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,120,68,55,98,86,47,103,81,118,72,115,69,104,71,101,65,74,112,88,87,103,102,52,103,77,78,55,100,105,82,101,67,119,66,80,116,10,55,103,115,85,80,72,120,107,97,75,85,68,112,47,104,49,118,85,110,85,82,106,71,52,82,106,66,81,76,117,113,110,104,110,90,83,109,73,88,112,110,106,88,82,106,101,98,116,100,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,78,57,87,110,121,84,99,66,117,118,50,68,103,80,105,49,10,115,75,80,71,54,84,52,119,109,68,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,90,99,49,104,103,80,51,116,83,66,107,90,50,65,53,109,105,122,116,49,48,50,83,100,100,55,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,78,54,90,83,79,72,84,49,105,85,110,10,86,102,52,67,116,68,119,112,73,115,98,101,82,78,74,121,74,80,115,106,106,78,101,97,100,108,107,113,72,98,51,99,65,105,66,114,66,72,122,66,112,97,74,120,65,72,100,71,108,69,74,83,103,114,88,55,103,51,81,105,51,118,65,80,10,55,78,110,68,47,53,77,85,115,119,68,70,74,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,225,59,91,65,171,51,59,243,199,79,202,245,141,193,60,11,26,235,161,222,4,69,98,128,20,91,135,128,122,41,27,159,2,32,101,163,224,95,152,232,76,210,119,39,81,198,92,171,160,252,93,38,226,66,26,179,161,8,223,252,25,148,60,120,180,44]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,52,99,66,72,99,83,82,97,89,76,56,57,118,43,84,49,98,69,54,70,49,109,76,81,75,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,65,108,53,53,72,98,73,66,113,66,78,85,98,107,101,112,105,119,84,88,98,52,68,109,88,68,121,116,52,117,10,105,78,43,74,118,57,116,120,48,73,118,52,68,75,111,51,48,79,98,83,88,56,89,122,57,86,102,119,89,119,118,51,107,113,115,87,75,102,118,89,68,106,79,51,52,116,50,121,55,105,72,116,87,120,117,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,113,82,116,90,54,90,54,81,112,43,10,75,55,90,67,69,57,101,119,88,84,69,51,73,90,74,67,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,111,82,106,86,53,112,82,88,56,97,108,121,112,68,99,54,53,105,78,48,72,109,86,105,54,115,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,69,53,54,89,49,75,56,10,50,57,115,80,69,98,97,112,111,70,48,117,119,87,54,71,77,66,105,114,122,70,49,118,53,112,50,114,98,88,115,49,79,118,105,101,65,105,66,101,117,72,75,97,119,112,114,77,101,50,76,88,73,69,113,77,86,109,52,51,43,75,51,75,10,69,77,49,117,103,83,120,89,121,109,53,56,78,80,77,47,102,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,120,149,233,140,244,170,96,10,170,217,227,216,31,57,179,135,116,123,210,180,5,169,90,132,63,65,31,115,162,249,239,230,2,32,36,193,100,99,58,254,137,229,81,93,89,172,9,249,107,110,170,89,237,57,245,50,66,81,108,129,183,81,163,164,220,22]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,221,210,105,83,194,227,100,215,235,145,235,213,104,173,35,45,25,45,121,74,13,116,199,55,78,231,146,37,161,33,27,115,2,32,64,59,249,165,181,190,136,198,108,161,238,107,238,129,127,202,231,222,11,238,169,224,67,26,245,66,154,181,7,62,222,174]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:42:57.223Z"",""channel_id"":""mychannel"",""tx_id"":""77b4b7f6ff02dca212706491957f4d3663f0aca470bc943b09eba2f3dc979e92"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[103,14,70,232,173,127,176,179,211,92,173,244,83,58,143,8,181,20,35,157,200,7,41,167]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[103,14,70,232,173,127,176,179,211,92,173,244,83,58,143,8,181,20,35,157,200,7,41,167]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[59,66,155,216,48,24,249,44,126,116,77,167,121,19,29,172,9,155,86,173,167,60,139,111,214,94,22,61,152,67,42,157]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,52,99,66,72,99,83,82,97,89,76,56,57,118,43,84,49,98,69,54,70,49,109,76,81,75,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,65,108,53,53,72,98,73,66,113,66,78,85,98,107,101,112,105,119,84,88,98,52,68,109,88,68,121,116,52,117,10,105,78,43,74,118,57,116,120,48,73,118,52,68,75,111,51,48,79,98,83,88,56,89,122,57,86,102,119,89,119,118,51,107,113,115,87,75,102,118,89,68,106,79,51,52,116,50,121,55,105,72,116,87,120,117,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,113,82,116,90,54,90,54,81,112,43,10,75,55,90,67,69,57,101,119,88,84,69,51,73,90,74,67,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,111,82,106,86,53,112,82,88,56,97,108,121,112,68,99,54,53,105,78,48,72,109,86,105,54,115,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,69,53,54,89,49,75,56,10,50,57,115,80,69,98,97,112,111,70,48,117,119,87,54,71,77,66,105,114,122,70,49,118,53,112,50,114,98,88,115,49,79,118,105,101,65,105,66,101,117,72,75,97,119,112,114,77,101,50,76,88,73,69,113,77,86,109,52,51,43,75,51,75,10,69,77,49,117,103,83,120,89,121,109,53,56,78,80,77,47,102,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,171,213,189,183,194,199,246,137,163,18,178,37,118,54,53,94,129,11,219,141,248,91,29,199,74,131,191,158,148,134,188,21,2,32,106,78,160,47,52,15,103,231,231,123,210,41,217,170,251,193,113,144,9,169,223,74,56,184,218,89,79,107,70,46,89,110]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,11"'); -INSERT INTO "fabric_blocks_entry_rows" ("fabric_block_id", "fabric_block_num", "fabric_block_data") VALUES ('141,170,189,119,47,141,1,53,227,170,122,18,96,37,83,5,243,7,199,177,205,182,64,173,124,56,77,56,189,150,62,79', '9', '"{""decodedBlock"":{""header"":{""number"":{""low"":9,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[54,146,12,189,14,123,75,133,150,208,11,144,53,45,200,119,83,191,182,180,123,210,202,73,73,70,179,43,64,58,255,144]},""data_hash"":{""type"":""Buffer"",""data"":[141,170,189,119,47,141,1,53,227,170,122,18,96,37,83,5,243,7,199,177,205,182,64,173,124,56,77,56,189,150,62,79]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,222,246,52,180,92,185,95,160,30,98,163,166,38,136,103,200,208,70,70,190,15,13,61,227,187,211,192,230,101,43,184,226,2,32,62,83,227,194,65,134,67,253,165,157,108,205,121,243,177,243,202,88,79,70,102,195,41,67,146,84,69,28,112,167,251,93]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:42:58.553Z"",""channel_id"":""mychannel"",""tx_id"":""8a4a0857b62dfb2fc182c6fc8d5951d35c3c1cdb377b137cb218feedce5d2a65"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[233,21,238,15,219,216,206,222,147,111,224,228,175,192,189,127,249,103,199,63,93,146,236,227]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[233,21,238,15,219,216,206,222,147,111,224,228,175,192,189,127,249,103,199,63,93,146,236,227]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[17,200,85,45,203,19,90,28,146,25,64,77,31,167,68,17,222,22,206,114,133,80,78,4,87,196,160,96,138,45,167,46]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,78,108,115,116,88,51,87,119,48,69,120,119,83,83,122,80,73,115,117,98,121,99,100,67,113,53,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,77,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,81,119,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,120,68,55,98,86,47,103,81,118,72,115,69,104,71,101,65,74,112,88,87,103,102,52,103,77,78,55,100,105,82,101,67,119,66,80,116,10,55,103,115,85,80,72,120,107,97,75,85,68,112,47,104,49,118,85,110,85,82,106,71,52,82,106,66,81,76,117,113,110,104,110,90,83,109,73,88,112,110,106,88,82,106,101,98,116,100,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,78,57,87,110,121,84,99,66,117,118,50,68,103,80,105,49,10,115,75,80,71,54,84,52,119,109,68,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,90,99,49,104,103,80,51,116,83,66,107,90,50,65,53,109,105,122,116,49,48,50,83,100,100,55,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,78,54,90,83,79,72,84,49,105,85,110,10,86,102,52,67,116,68,119,112,73,115,98,101,82,78,74,121,74,80,115,106,106,78,101,97,100,108,107,113,72,98,51,99,65,105,66,114,66,72,122,66,112,97,74,120,65,72,100,71,108,69,74,83,103,114,88,55,103,51,81,105,51,118,65,80,10,55,78,110,68,47,53,77,85,115,119,68,70,74,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,223,236,251,227,73,92,179,150,182,229,80,139,180,240,95,196,74,68,172,121,238,32,117,126,179,157,75,5,193,79,215,18,2,32,77,9,220,135,24,191,42,11,155,55,31,108,208,223,63,112,117,241,169,54,95,184,30,148,241,203,12,161,154,149,172,130]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,52,99,66,72,99,83,82,97,89,76,56,57,118,43,84,49,98,69,54,70,49,109,76,81,75,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,65,108,53,53,72,98,73,66,113,66,78,85,98,107,101,112,105,119,84,88,98,52,68,109,88,68,121,116,52,117,10,105,78,43,74,118,57,116,120,48,73,118,52,68,75,111,51,48,79,98,83,88,56,89,122,57,86,102,119,89,119,118,51,107,113,115,87,75,102,118,89,68,106,79,51,52,116,50,121,55,105,72,116,87,120,117,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,113,82,116,90,54,90,54,81,112,43,10,75,55,90,67,69,57,101,119,88,84,69,51,73,90,74,67,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,111,82,106,86,53,112,82,88,56,97,108,121,112,68,99,54,53,105,78,48,72,109,86,105,54,115,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,69,53,54,89,49,75,56,10,50,57,115,80,69,98,97,112,111,70,48,117,119,87,54,71,77,66,105,114,122,70,49,118,53,112,50,114,98,88,115,49,79,118,105,101,65,105,66,101,117,72,75,97,119,112,114,77,101,50,76,88,73,69,113,77,86,109,52,51,43,75,51,75,10,69,77,49,117,103,83,120,89,121,109,53,56,78,80,77,47,102,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,192,240,154,242,83,227,170,146,79,26,255,126,203,231,0,112,89,46,179,235,201,84,76,48,110,41,153,121,16,67,176,146,2,32,118,234,131,82,178,111,163,80,156,104,201,241,247,224,168,33,26,164,181,5,89,167,226,56,168,115,183,217,244,52,255,46]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,148,105,253,107,202,246,15,163,45,71,202,92,158,154,209,118,72,99,112,33,175,124,103,51,189,41,79,52,20,113,171,157,2,32,51,244,161,203,26,163,148,130,245,190,72,159,233,73,43,238,4,151,150,78,255,203,181,103,59,24,32,180,176,172,178,236]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:43:00.152Z"",""channel_id"":""mychannel"",""tx_id"":""989b44cb30fc396456424aa556c6e166ed2dc542e7cd2d2615639d4bdffc3471"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[147,206,92,206,31,255,62,201,62,187,243,98,176,113,60,177,160,69,3,124,255,46,128,61]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[147,206,92,206,31,255,62,201,62,187,243,98,176,113,60,177,160,69,3,124,255,46,128,61]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[253,236,51,109,215,30,255,147,185,200,69,205,119,194,255,5,135,63,55,21,160,218,182,189,186,116,1,92,201,180,6,237]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,52,99,66,72,99,83,82,97,89,76,56,57,118,43,84,49,98,69,54,70,49,109,76,81,75,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,65,108,53,53,72,98,73,66,113,66,78,85,98,107,101,112,105,119,84,88,98,52,68,109,88,68,121,116,52,117,10,105,78,43,74,118,57,116,120,48,73,118,52,68,75,111,51,48,79,98,83,88,56,89,122,57,86,102,119,89,119,118,51,107,113,115,87,75,102,118,89,68,106,79,51,52,116,50,121,55,105,72,116,87,120,117,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,113,82,116,90,54,90,54,81,112,43,10,75,55,90,67,69,57,101,119,88,84,69,51,73,90,74,67,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,111,82,106,86,53,112,82,88,56,97,108,121,112,68,99,54,53,105,78,48,72,109,86,105,54,115,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,69,53,54,89,49,75,56,10,50,57,115,80,69,98,97,112,111,70,48,117,119,87,54,71,77,66,105,114,122,70,49,118,53,112,50,114,98,88,115,49,79,118,105,101,65,105,66,101,117,72,75,97,119,112,114,77,101,50,76,88,73,69,113,77,86,109,52,51,43,75,51,75,10,69,77,49,117,103,83,120,89,121,109,53,56,78,80,77,47,102,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,219,44,43,182,42,211,38,125,225,25,103,230,182,170,68,37,100,157,181,180,39,0,218,210,225,114,33,17,126,39,84,76,2,32,82,44,40,89,166,170,172,53,246,23,199,110,124,195,86,191,54,155,67,4,14,91,221,252,65,191,97,82,11,128,181,58]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65"'); -INSERT INTO "fabric_blocks_entry_rows" ("fabric_block_id", "fabric_block_num", "fabric_block_data") VALUES ('205,59,160,123,177,34,251,205,137,10,51,171,62,255,215,163,54,119,187,153,126,27,128,3,26,55,153,229,9,138,219,118', '5', '"{""decodedBlock"":{""header"":{""number"":{""low"":5,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[198,72,91,201,41,4,171,92,81,118,169,35,164,95,223,222,5,91,68,134,155,144,71,217,130,117,45,117,190,66,92,69]},""data_hash"":{""type"":""Buffer"",""data"":[205,59,160,123,177,34,251,205,137,10,51,171,62,255,215,163,54,119,187,153,126,27,128,3,26,55,153,229,9,138,219,118]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,139,18,211,255,213,5,229,34,119,92,110,142,227,214,134,135,90,193,209,145,53,78,84,121,101,128,11,10,0,135,0,105,2,32,86,211,54,85,109,181,136,155,124,98,187,208,205,86,205,151,96,233,0,194,230,109,226,120,191,24,114,205,222,30,144,171]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:18.252Z"",""channel_id"":""mychannel"",""tx_id"":""58613e966d7dfbef9ff062d2ce95f1da18e80bdef89321eca12cf7f5ec648301"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,12,18,10,95,108,105,102,101,99,121,99,108,101]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,73,52,85,105,48,52,68,100,110,107,83,98,53,55,100,82,53,111,112,118,114,43,102,104,106,67,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,81,48,122,112,81,54,100,111,108,51,85,78,77,115,122,78,114,117,90,57,119,84,98,67,73,50,114,52,78,66,10,89,48,116,68,116,52,51,98,111,81,50,78,87,67,72,109,103,103,85,107,66,101,109,79,54,68,52,122,85,43,109,106,86,85,85,65,86,54,114,76,105,121,69,53,104,47,113,102,108,53,71,87,106,47,54,53,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,74,102,87,79,105,76,55,49,117,10,85,122,109,82,50,104,98,97,76,118,52,49,49,119,99,87,109,122,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,82,83,52,98,47,65,86,98,89,57,52,117,74,51,117,51,83,118,112,43,113,97,65,109,122,114,114,68,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,122,78,50,69,120,77,106,108,107,89,106,69,121,78,50,73,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,67,79,99,116,52,51,56,52,53,51,83,10,89,112,72,98,66,51,102,121,114,56,78,110,49,104,104,104,56,77,76,53,115,106,55,110,119,122,107,83,120,85,77,67,73,65,47,86,67,87,88,115,77,73,102,88,105,85,70,70,80,66,102,65,108,82,120,81,65,108,99,108,114,122,72,118,10,43,75,55,89,56,119,78,102,89,115,113,121,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[22,86,115,5,143,10,58,140,48,164,252,233,3,129,209,226,27,145,142,129,18,119,112,205]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,73,52,85,105,48,52,68,100,110,107,83,98,53,55,100,82,53,111,112,118,114,43,102,104,106,67,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,81,48,122,112,81,54,100,111,108,51,85,78,77,115,122,78,114,117,90,57,119,84,98,67,73,50,114,52,78,66,10,89,48,116,68,116,52,51,98,111,81,50,78,87,67,72,109,103,103,85,107,66,101,109,79,54,68,52,122,85,43,109,106,86,85,85,65,86,54,114,76,105,121,69,53,104,47,113,102,108,53,71,87,106,47,54,53,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,74,102,87,79,105,76,55,49,117,10,85,122,109,82,50,104,98,97,76,118,52,49,49,119,99,87,109,122,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,82,83,52,98,47,65,86,98,89,57,52,117,74,51,117,51,83,118,112,43,113,97,65,109,122,114,114,68,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,122,78,50,69,120,77,106,108,107,89,106,69,121,78,50,73,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,67,79,99,116,52,51,56,52,53,51,83,10,89,112,72,98,66,51,102,121,114,56,78,110,49,104,104,104,56,77,76,53,115,106,55,110,119,122,107,83,120,85,77,67,73,65,47,86,67,87,88,115,77,73,102,88,105,85,70,70,80,66,102,65,108,82,120,81,65,108,99,108,114,122,72,118,10,43,75,55,89,56,119,78,102,89,115,113,121,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[22,86,115,5,143,10,58,140,48,164,252,233,3,129,209,226,27,145,142,129,18,119,112,205]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":0,""typeString"":""UNDEFINED"",""input"":{""args"":[{""type"":""Buffer"",""data"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{""type"":""Buffer"",""data"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""_lifecycle""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[188,159,166,186,198,192,138,21,223,86,162,185,61,163,59,253,190,65,28,213,188,28,4,217,186,82,35,158,33,221,50,135]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence""},{""key"":""namespaces/metadata/basic""}],""range_queries_info"":[],""writes"":[{""key"":""namespaces/fields/basic/Collections"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,0]}},{""key"":""namespaces/fields/basic/EndorsementInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{""key"":""namespaces/fields/basic/Sequence"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[8,1]}},{""key"":""namespaces/fields/basic/ValidationInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{""key"":""namespaces/metadata/basic"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[{""collection_name"":""_implicit_org_Org1MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}},{""collection_name"":""_implicit_org_Org2MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}}]},{""namespace"":""lscc"",""rwset"":{""reads"":[{""key"":""basic""}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""_lifecycle"",""version"":""syscc""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,185,123,249,202,126,20,13,74,180,1,227,139,115,3,109,239,145,93,113,24,3,131,41,24,224,53,170,170,61,88,2,178,2,32,44,255,63,99,157,202,26,71,127,123,45,251,171,138,116,176,30,116,57,38,51,85,158,29,184,246,2,229,107,91,75,33]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,238,227,62,222,126,150,126,128,185,220,36,208,179,7,212,70,185,15,196,17,70,251,15,164,123,60,196,93,11,152,255,72,2,32,67,32,205,190,209,193,134,122,220,247,43,29,188,127,196,84,241,20,16,82,255,102,110,122,237,177,38,154,108,121,157,64]}}]}}}]}}}]},""metadata"":{""metadata"":[{""value"":{""type"":""Buffer"",""data"":[10,2,8,2,18,9,10,7,10,1,1,16,2,24,7]},""signatures"":[{""signature_header"":{""creator"":{""mspid"":""OrdererMSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,114,84,67,67,65,108,83,103,65,119,73,66,65,103,73,85,83,77,49,80,56,105,69,120,70,71,70,121,56,86,65,83,47,53,74,110,109,50,53,49,68,80,77,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,89,106,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,69,84,65,80,66,103,78,86,66,65,103,84,67,69,53,108,100,121,66,90,98,51,74,114,77,82,69,119,68,119,89,68,86,81,81,72,69,119,104,79,90,88,99,103,10,87,87,57,121,97,122,69,85,77,66,73,71,65,49,85,69,67,104,77,76,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,70,122,65,86,66,103,78,86,66,65,77,84,68,109,78,104,76,109,86,52,89,87,49,119,98,71,85,117,10,89,50,57,116,77,66,52,88,68,84,73,122,77,68,73,121,78,68,65,51,78,68,103,119,77,70,111,88,68,84,73,48,77,68,73,121,78,68,65,51,78,84,77,119,77,70,111,119,89,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,10,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,82,81,119,69,103,89,68,86,81,81,75,69,119,116,73,101,88,66,108,99,109,120,108,90,71,100,108,10,99,106,69,81,77,65,52,71,65,49,85,69,67,120,77,72,98,51,74,107,90,88,74,108,99,106,69,81,77,65,52,71,65,49,85,69,65,120,77,72,98,51,74,107,90,88,74,108,99,106,66,90,77,66,77,71,66,121,113,71,83,77,52,57,10,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,79,117,101,77,116,49,102,86,88,50,69,90,119,107,73,70,107,89,122,51,80,117,68,97,105,102,83,100,56,88,69,99,90,109,55,65,119,54,90,86,107,88,83,10,47,48,79,56,115,51,116,87,54,88,106,75,113,84,70,82,111,83,80,87,75,82,65,56,82,112,81,106,85,111,65,84,86,115,55,69,43,104,83,80,74,106,109,106,103,101,107,119,103,101,89,119,68,103,89,68,86,82,48,80,65,81,72,47,10,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,69,50,80,86,53,77,66,88,106,65,102,83,78,118,72,116,106,86,113,79,54,54,10,102,88,121,50,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,79,120,66,66,119,74,54,65,87,50,113,55,52,103,65,122,43,73,49,118,113,73,54,69,109,55,112,77,67,107,71,65,49,85,100,69,81,81,105,77,67,67,67,10,69,50,57,121,90,71,86,121,90,88,73,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,50,67,67,87,120,118,89,50,70,115,97,71,57,122,100,68,66,98,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,80,101,121,74,104,10,100,72,82,121,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,109,57,121,10,90,71,86,121,90,88,73,105,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,98,51,74,107,90,88,74,108,99,105,74,57,102,84,65,75,66,103,103,113,104,107,106,79,80,81,81,68,65,103,78,72,65,68,66,69,65,105,66,81,10,79,76,116,121,110,105,98,109,77,73,101,107,73,52,83,48,116,54,89,80,49,118,112,82,51,70,55,83,115,52,102,50,100,119,84,72,79,81,86,103,119,81,73,103,71,86,115,70,70,70,106,106,112,120,79,76,97,102,116,83,53,109,77,68,10,53,112,107,78,73,75,48,48,78,73,88,119,65,101,117,74,84,89,113,118,50,81,77,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[249,76,6,210,110,245,173,23,38,215,202,169,64,120,8,113,235,143,70,44,128,75,160,118]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,249,153,210,255,137,147,98,37,72,214,215,245,54,10,92,38,157,190,79,82,92,221,73,245,208,221,146,224,235,70,51,13,2,32,105,159,17,164,129,27,201,147,81,176,106,141,102,7,66,108,213,7,158,228,254,35,58,92,195,95,68,12,4,95,67,67]}}]},{},[0],{},{""type"":""Buffer"",""data"":[10,32,54,147,116,176,55,31,129,3,24,192,93,60,126,158,55,195,105,28,119,250,178,216,175,185,113,5,113,253,100,116,228,144]}]}}}"'); -INSERT INTO "fabric_blocks_entry_rows" ("fabric_block_id", "fabric_block_num", "fabric_block_data") VALUES ('80,232,219,19,101,21,13,75,87,34,118,125,16,138,187,64,201,219,178,93,39,180,14,7,199,219,57,91,253,53,92,176', '6', '"{""decodedBlock"":{""header"":{""number"":{""low"":6,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[202,237,179,216,79,200,73,96,99,83,1,226,0,23,205,163,244,204,35,168,215,196,212,207,244,102,185,73,189,36,251,152]},""data_hash"":{""type"":""Buffer"",""data"":[80,232,219,19,101,21,13,75,87,34,118,125,16,138,187,64,201,219,178,93,39,180,14,7,199,219,57,91,253,53,92,176]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,132,7,233,233,172,217,193,119,100,139,157,54,162,215,50,204,82,143,8,69,27,66,103,228,200,99,69,249,251,121,109,215,2,32,102,78,208,101,180,85,64,246,3,78,163,192,153,30,216,85,33,44,78,202,27,114,255,217,199,129,136,153,19,220,178,38]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:22.512Z"",""channel_id"":""mychannel"",""tx_id"":""f8575550109d29f1e0da41d7d1e057c5e10c384fc2aba9e43be2d7c4aee047f4"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[135,139,121,2,212,42,132,175,112,75,119,143,222,46,251,177,106,84,57,52,188,76,177,169]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[135,139,121,2,212,42,132,175,112,75,119,143,222,46,251,177,106,84,57,52,188,76,177,169]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[175,123,136,118,225,87,179,53,213,201,57,222,136,70,49,163,171,117,101,117,55,19,165,218,238,199,221,1,22,4,235,24]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,70,147,94,203,215,170,152,192,197,213,227,119,101,5,157,48,232,229,11,103,45,138,134,187,109,212,85,53,97,94,2,91,2,32,63,169,74,17,125,113,177,179,27,34,192,105,155,59,178,236,78,250,191,212,169,137,141,195,103,52,63,110,48,85,210,9]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,88,194,170,226,65,146,78,237,153,105,63,217,203,6,29,199,51,250,241,36,133,104,97,57,208,194,9,34,8,157,186,128,2,32,26,77,252,165,219,96,63,1,150,38,206,40,3,20,187,145,118,181,211,218,187,99,243,177,244,210,255,112,153,101,199,51]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,145,51,60,161,110,118,184,247,9,154,52,194,145,200,34,146,179,233,198,195,25,23,65,160,220,27,149,155,226,63,189,84,2,32,35,32,83,10,125,188,13,139,102,4,103,23,90,171,141,69,114,242,56,77,224,215,90,219,232,210,71,33,102,93,241,213]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:25.392Z"",""channel_id"":""mychannel"",""tx_id"":""6073b7237a8a5bb34268c493c2d51a3d00df9951821abf1d36cc59cc72fc8cfe"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[208,172,84,101,173,140,80,23,24,119,31,119,1,25,229,110,52,177,110,71,247,106,84,53]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[208,172,84,101,173,140,80,23,24,119,31,119,1,25,229,110,52,177,110,71,247,106,84,53]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[248,229,169,223,0,18,218,140,251,171,108,154,254,140,118,227,73,26,43,107,155,92,165,22,107,138,94,102,131,173,26,171]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,176,170,12,173,244,235,118,218,135,66,160,241,210,79,133,14,22,30,217,89,4,192,99,211,134,86,245,235,135,125,32,178,2,32,1,225,94,15,188,134,8,190,33,81,220,244,114,234,205,34,226,186,235,160,129,146,159,110,97,143,7,126,227,18,45,247]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103"'); -INSERT INTO "fabric_blocks_entry_rows" ("fabric_block_id", "fabric_block_num", "fabric_block_data") VALUES ('241,190,232,255,90,116,232,132,175,181,34,182,97,52,74,5,116,2,87,189,100,196,0,178,160,228,71,22,244,27,17,178', '7', '"{""decodedBlock"":{""header"":{""number"":{""low"":7,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[136,112,138,249,46,195,8,68,231,245,2,229,137,243,66,174,23,253,46,82,230,204,58,232,197,137,150,76,23,186,129,97]},""data_hash"":{""type"":""Buffer"",""data"":[241,190,232,255,90,116,232,132,175,181,34,182,97,52,74,5,116,2,87,189,100,196,0,178,160,228,71,22,244,27,17,178]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,237,78,57,176,239,182,238,172,172,58,246,250,179,71,198,136,70,216,59,191,216,147,244,87,184,126,83,242,105,172,31,53,2,32,37,205,21,168,45,205,51,50,195,146,244,228,78,72,219,254,20,88,119,107,45,109,145,151,118,62,15,2,101,163,239,224]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:26.947Z"",""channel_id"":""mychannel"",""tx_id"":""0f44f13f2a7f165f22021fb2a50521e08357b5b6d67f9054da9baf5392d5ef5d"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[79,176,152,133,125,63,221,26,203,239,161,9,140,68,226,67,144,109,209,178,10,43,135,197]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[79,176,152,133,125,63,221,26,203,239,161,9,140,68,226,67,144,109,209,178,10,43,135,197]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[208,165,95,6,162,15,196,149,89,98,104,68,187,61,228,200,8,161,231,229,122,184,95,93,129,62,105,129,206,185,93,234]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,25,207,222,10,168,171,46,236,136,57,83,66,24,49,218,168,147,97,213,128,136,250,63,47,83,117,37,222,233,178,71,73,2,32,113,33,113,52,252,60,20,209,239,153,181,102,146,212,173,38,45,176,32,13,71,220,81,165,2,239,227,81,95,185,247,219]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,92,178,98,57,242,243,202,191,201,62,60,215,73,125,19,225,249,100,6,127,205,226,219,187,252,142,77,133,5,183,131,72,2,32,52,37,34,234,208,98,6,88,191,113,121,194,119,123,207,122,188,91,4,88,97,221,179,65,195,5,37,69,90,151,124,225]}}]}}}]}}}]},""metadata"":{""metadata"":[{""value"":{""type"":""Buffer"",""data"":[10,2,8,2,18,9,10,7,10,1,1,16,2,24,9]},""signatures"":[{""signature_header"":{""creator"":{""mspid"":""OrdererMSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,114,84,67,67,65,108,83,103,65,119,73,66,65,103,73,85,83,77,49,80,56,105,69,120,70,71,70,121,56,86,65,83,47,53,74,110,109,50,53,49,68,80,77,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,89,106,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,69,84,65,80,66,103,78,86,66,65,103,84,67,69,53,108,100,121,66,90,98,51,74,114,77,82,69,119,68,119,89,68,86,81,81,72,69,119,104,79,90,88,99,103,10,87,87,57,121,97,122,69,85,77,66,73,71,65,49,85,69,67,104,77,76,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,70,122,65,86,66,103,78,86,66,65,77,84,68,109,78,104,76,109,86,52,89,87,49,119,98,71,85,117,10,89,50,57,116,77,66,52,88,68,84,73,122,77,68,73,121,78,68,65,51,78,68,103,119,77,70,111,88,68,84,73,48,77,68,73,121,78,68,65,51,78,84,77,119,77,70,111,119,89,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,10,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,82,81,119,69,103,89,68,86,81,81,75,69,119,116,73,101,88,66,108,99,109,120,108,90,71,100,108,10,99,106,69,81,77,65,52,71,65,49,85,69,67,120,77,72,98,51,74,107,90,88,74,108,99,106,69,81,77,65,52,71,65,49,85,69,65,120,77,72,98,51,74,107,90,88,74,108,99,106,66,90,77,66,77,71,66,121,113,71,83,77,52,57,10,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,79,117,101,77,116,49,102,86,88,50,69,90,119,107,73,70,107,89,122,51,80,117,68,97,105,102,83,100,56,88,69,99,90,109,55,65,119,54,90,86,107,88,83,10,47,48,79,56,115,51,116,87,54,88,106,75,113,84,70,82,111,83,80,87,75,82,65,56,82,112,81,106,85,111,65,84,86,115,55,69,43,104,83,80,74,106,109,106,103,101,107,119,103,101,89,119,68,103,89,68,86,82,48,80,65,81,72,47,10,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,69,50,80,86,53,77,66,88,106,65,102,83,78,118,72,116,106,86,113,79,54,54,10,102,88,121,50,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,79,120,66,66,119,74,54,65,87,50,113,55,52,103,65,122,43,73,49,118,113,73,54,69,109,55,112,77,67,107,71,65,49,85,100,69,81,81,105,77,67,67,67,10,69,50,57,121,90,71,86,121,90,88,73,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,50,67,67,87,120,118,89,50,70,115,97,71,57,122,100,68,66,98,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,80,101,121,74,104,10,100,72,82,121,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,109,57,121,10,90,71,86,121,90,88,73,105,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,98,51,74,107,90,88,74,108,99,105,74,57,102,84,65,75,66,103,103,113,104,107,106,79,80,81,81,68,65,103,78,72,65,68,66,69,65,105,66,81,10,79,76,116,121,110,105,98,109,77,73,101,107,73,52,83,48,116,54,89,80,49,118,112,82,51,70,55,83,115,52,102,50,100,119,84,72,79,81,86,103,119,81,73,103,71,86,115,70,70,70,106,106,112,120,79,76,97,102,116,83,53,109,77,68,10,53,112,107,78,73,75,48,48,78,73,88,119,65,101,117,74,84,89,113,118,50,81,77,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[81,198,121,53,67,199,200,180,18,25,159,186,59,249,193,99,190,35,236,195,96,62,151,153]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,68,236,215,194,181,219,110,113,132,248,6,61,121,39,105,19,120,211,183,58,33,20,206,119,254,32,144,118,76,82,134,7,2,32,96,108,208,8,9,73,20,219,208,143,139,158,146,200,84,176,159,236,104,215,207,3,241,123,138,189,182,21,83,102,38,202]}}]},{},[0],{},{""type"":""Buffer"",""data"":[10,32,142,180,91,164,51,80,139,60,162,167,162,211,155,6,149,223,74,18,209,198,252,68,27,48,171,134,27,88,156,128,130,162]}]}}}"'); -INSERT INTO "fabric_blocks_entry_rows" ("fabric_block_id", "fabric_block_num", "fabric_block_data") VALUES ('57,193,86,188,19,64,145,154,98,228,32,203,89,62,90,135,209,167,206,48,97,156,158,242,16,168,93,124,202,35,28,33', '8', '"{""decodedBlock"":{""header"":{""number"":{""low"":8,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[215,215,56,220,1,131,180,52,147,37,250,118,204,125,198,116,71,194,118,178,76,61,209,213,217,128,163,119,118,78,79,143]},""data_hash"":{""type"":""Buffer"",""data"":[57,193,86,188,19,64,145,154,98,228,32,203,89,62,90,135,209,167,206,48,97,156,158,242,16,168,93,124,202,35,28,33]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,202,11,239,239,164,17,165,31,34,190,199,99,52,47,239,35,165,239,120,17,218,126,229,159,113,210,101,22,52,147,130,103,2,32,126,135,196,89,251,253,173,243,182,112,197,134,128,167,58,10,99,91,226,168,27,211,4,65,171,52,170,127,193,105,182,159]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:29.218Z"",""channel_id"":""mychannel"",""tx_id"":""553e0bed7098738c8d790c7804124b5ae4026594513ea3a93e1198de43f609c4"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[241,73,159,200,55,45,5,242,119,210,95,140,179,180,199,124,230,234,126,12,111,239,104,228]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[241,73,159,200,55,45,5,242,119,210,95,140,179,180,199,124,230,234,126,12,111,239,104,228]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[94,101,212,181,75,142,193,217,74,172,147,124,210,28,214,144,125,135,182,161,13,167,192,110,219,156,120,102,64,155,207,65]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,80,131,144,12,171,193,108,231,184,228,62,198,96,132,17,5,198,193,197,60,46,206,127,26,128,111,188,114,56,133,97,54,2,32,2,237,184,172,214,231,97,179,108,107,172,160,235,49,66,234,15,21,228,140,150,88,202,141,131,221,116,9,73,177,148,176]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,218,29,105,245,25,46,105,11,2,63,119,76,99,40,73,232,247,183,173,59,176,15,69,251,123,88,195,128,23,205,196,154,2,32,38,10,233,36,32,185,247,213,98,249,169,13,129,45,152,29,193,46,27,59,87,13,113,82,54,91,31,199,56,40,29,199]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,13,48,79,106,143,66,119,158,207,189,173,253,22,205,102,3,48,57,57,48,164,70,61,161,131,148,251,67,223,171,83,176,2,32,93,168,11,94,239,213,207,255,157,255,3,150,154,164,84,182,189,63,150,36,0,11,4,230,164,229,207,137,228,146,107,0]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:30.749Z"",""channel_id"":""mychannel"",""tx_id"":""12e699cbf2708778e4a4f35b9a1058ba4f5bf7e48023df43706ef2fe1e3c3c79"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[69,51,186,83,226,253,78,61,64,27,167,162,180,45,210,177,150,38,251,49,95,60,167,0]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[69,51,186,83,226,253,78,61,64,27,167,162,180,45,210,177,150,38,251,49,95,60,167,0]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[184,114,183,62,22,154,244,139,28,66,136,115,61,241,164,245,103,11,5,15,120,183,238,160,201,152,254,252,34,162,254,12]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,17,113,229,102,224,80,76,204,179,46,156,2,94,55,186,154,47,90,54,220,242,254,242,136,13,246,224,233,225,238,84,185,2,32,42,127,68,114,250,239,34,237,124,90,170,184,10,98,185,43,93,3,8,158,205,75,149,175,23,105,55,22,67,140,87,108]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,1"'); -INSERT INTO "fabric_blocks_entry_rows" ("fabric_block_id", "fabric_block_num", "fabric_block_data") VALUES ('198,169,106,137,86,110,103,51,34,219,178,249,85,63,240,54,216,4,235,46,192,26,77,64,35,143,121,176,15,24,154,22', '9', '"{""decodedBlock"":{""header"":{""number"":{""low"":9,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[68,124,189,181,200,83,103,84,244,68,130,169,112,218,199,115,115,253,216,93,218,24,211,139,58,205,77,59,220,46,239,137]},""data_hash"":{""type"":""Buffer"",""data"":[198,169,106,137,86,110,103,51,34,219,178,249,85,63,240,54,216,4,235,46,192,26,77,64,35,143,121,176,15,24,154,22]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,184,6,91,55,139,191,45,119,72,107,123,88,64,130,164,22,69,52,66,21,77,233,94,159,9,91,92,56,163,230,192,251,2,32,65,32,215,131,109,197,205,15,216,98,244,43,106,16,179,140,29,154,23,126,51,60,52,173,171,136,22,171,247,40,209,66]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:32.541Z"",""channel_id"":""mychannel"",""tx_id"":""21d58641997009b08d8660da5dc7a829d5936c05a232288212422148b13102e0"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[229,115,23,220,135,87,39,70,115,211,132,29,47,29,200,132,156,79,175,41,123,36,179,114]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[229,115,23,220,135,87,39,70,115,211,132,29,47,29,200,132,156,79,175,41,123,36,179,114]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[162,126,207,209,147,201,46,209,85,164,209,198,83,227,123,94,186,9,162,155,172,254,95,178,201,64,255,4,56,147,227,250]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,78,211,207,229,99,163,10,61,170,73,33,51,216,77,157,217,22,139,242,49,178,155,26,141,49,160,151,92,113,8,186,179,2,32,76,142,218,218,229,98,84,216,42,167,235,205,226,226,144,133,149,192,55,122,150,146,86,177,196,248,219,178,126,81,54,176]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,248,177,95,113,193,52,163,164,145,249,234,250,188,240,55,76,73,75,185,71,235,224,39,144,200,88,81,39,246,20,253,56,2,32,113,177,116,63,28,182,73,187,33,48,190,70,247,90,56,51,208,0,207,217,118,28,203,18,94,241,169,10,129,73,224,150]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,249,199,111,1,66,65,107,6,55,47,250,139,173,141,146,66,69,104,214,0,166,7,76,138,71,241,131,67,144,77,181,146,2,32,2,164,152,40,184,30,182,28,145,141,53,112,64,84,83,121,38,96,108,153,212,227,124,157,153,244,80,211,213,250,194,191]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:34.437Z"",""channel_id"":""mychannel"",""tx_id"":""22098c7688c5dd159069515af0a7c31949c1de01916d9f3e7feff2acb4c40f38"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[249,19,66,127,237,65,18,47,70,22,51,157,63,21,83,103,125,90,109,37,94,32,77,22]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[249,19,66,127,237,65,18,47,70,22,51,157,63,21,83,103,125,90,109,37,94,32,77,22]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[95,245,154,200,183,213,30,187,232,6,35,183,247,33,95,56,102,19,131,188,189,198,153,102,8,116,62,160,103,218,43,14]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,12,115,243,81,41,232,134,53,210,114,102,224,202,136,22,100,145,195,67,247,4,115,140,230,12,192,142,91,161,23,59,101,2,32,34,152,93,156,94,90,228,112,191,94,46,127,216,11,180,156,233,6,85,46,92,233,166,142,217,105,199,0,76,150,102,3]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82"'); -INSERT INTO "fabric_blocks_entry_rows" ("fabric_block_id", "fabric_block_num", "fabric_block_data") VALUES ('059726dc5bb72b2a3a76f8cc015c7712e5b07c81c06f206c30aa71536fcd582e', '5', '"{""decodedBlock"":{""header"":{""number"":{""low"":5,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[93,153,204,64,255,30,182,61,144,80,153,138,26,71,177,222,166,133,41,113,51,209,197,44,121,131,233,52,102,119,6,231]},""data_hash"":{""type"":""Buffer"",""data"":[5,151,38,220,91,183,43,42,58,118,248,204,1,92,119,18,229,176,124,129,192,111,32,108,48,170,113,83,111,205,88,46]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,142,122,244,255,70,236,68,208,251,156,125,40,6,176,21,193,118,85,186,77,222,196,63,11,28,17,65,82,192,35,115,194,2,32,83,150,3,200,228,135,69,50,139,34,96,42,106,240,254,24,177,52,162,242,44,247,198,189,81,182,227,224,122,225,204,154]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T10:38:27.375Z"",""channel_id"":""mychannel"",""tx_id"":""e53c09a7e41e247754197cde297a8bbc64f848b49e2e4b4644364ec04b7ff640"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,12,18,10,95,108,105,102,101,99,121,99,108,101]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,90,82,106,97,83,116,72,88,83,57,110,97,108,111,112,47,52,80,65,56,52,72,86,52,113,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,120,77,68,77,120,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,120,77,68,77,50,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,83,113,116,52,121,84,106,43,47,97,83,98,65,68,48,97,48,114,121,48,86,87,66,121,101,51,122,118,50,10,43,56,113,113,48,83,75,77,102,50,65,101,111,55,57,71,81,57,78,85,109,100,89,81,122,90,85,78,88,100,82,66,107,121,48,102,88,71,99,80,49,100,71,57,50,69,50,106,70,117,101,100,117,81,122,80,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,82,104,97,85,84,82,74,122,115,43,10,99,57,50,50,122,86,51,119,51,122,84,115,104,72,89,121,71,106,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,82,72,99,53,90,54,105,88,76,105,43,65,53,122,115,98,107,43,108,57,99,78,111,52,113,47,109,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,52,78,87,73,121,89,106,77,50,90,71,73,120,79,71,77,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,85,65,106,115,48,118,81,89,77,97,102,69,10,54,110,104,122,81,68,105,57,117,111,113,120,53,51,112,108,54,55,101,57,49,101,65,105,103,70,86,53,97,78,111,67,73,67,82,113,43,122,57,83,50,122,80,67,57,104,71,103,85,76,115,119,87,107,81,121,80,106,115,87,122,99,75,107,10,78,77,115,68,119,67,122,107,90,101,114,84,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[65,172,15,227,197,21,230,182,18,202,194,142,2,156,30,232,113,247,231,20,241,105,73,128]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,90,82,106,97,83,116,72,88,83,57,110,97,108,111,112,47,52,80,65,56,52,72,86,52,113,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,120,77,68,77,120,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,120,77,68,77,50,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,83,113,116,52,121,84,106,43,47,97,83,98,65,68,48,97,48,114,121,48,86,87,66,121,101,51,122,118,50,10,43,56,113,113,48,83,75,77,102,50,65,101,111,55,57,71,81,57,78,85,109,100,89,81,122,90,85,78,88,100,82,66,107,121,48,102,88,71,99,80,49,100,71,57,50,69,50,106,70,117,101,100,117,81,122,80,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,82,104,97,85,84,82,74,122,115,43,10,99,57,50,50,122,86,51,119,51,122,84,115,104,72,89,121,71,106,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,82,72,99,53,90,54,105,88,76,105,43,65,53,122,115,98,107,43,108,57,99,78,111,52,113,47,109,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,52,78,87,73,121,89,106,77,50,90,71,73,120,79,71,77,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,85,65,106,115,48,118,81,89,77,97,102,69,10,54,110,104,122,81,68,105,57,117,111,113,120,53,51,112,108,54,55,101,57,49,101,65,105,103,70,86,53,97,78,111,67,73,67,82,113,43,122,57,83,50,122,80,67,57,104,71,103,85,76,115,119,87,107,81,121,80,106,115,87,122,99,75,107,10,78,77,115,68,119,67,122,107,90,101,114,84,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[65,172,15,227,197,21,230,182,18,202,194,142,2,156,30,232,113,247,231,20,241,105,73,128]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":0,""typeString"":""UNDEFINED"",""input"":{""args"":[{""type"":""Buffer"",""data"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{""type"":""Buffer"",""data"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""_lifecycle""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[9,194,68,47,186,176,104,90,126,217,181,119,30,4,188,147,56,193,17,169,170,53,110,114,107,23,27,105,19,11,82,87]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence""},{""key"":""namespaces/metadata/basic""}],""range_queries_info"":[],""writes"":[{""key"":""namespaces/fields/basic/Collections"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,0]}},{""key"":""namespaces/fields/basic/EndorsementInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{""key"":""namespaces/fields/basic/Sequence"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[8,1]}},{""key"":""namespaces/fields/basic/ValidationInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{""key"":""namespaces/metadata/basic"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[{""collection_name"":""_implicit_org_Org1MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}},{""collection_name"":""_implicit_org_Org2MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}}]},{""namespace"":""lscc"",""rwset"":{""reads"":[{""key"":""basic""}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""_lifecycle"",""version"":""syscc""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,84,98,68,112,113,86,83,104,111,110,112,85,51,50,108,85,55,68,117,86,117,48,106,85,105,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,74,88,73,57,66,109,85,116,53,66,51,88,117,113,122,79,100,56,48,101,74,105,86,106,66,101,71,56,86,54,110,10,102,82,54,103,89,77,103,83,70,84,116,55,108,114,71,118,80,57,111,108,70,76,90,99,82,90,81,121,100,57,55,122,75,86,109,80,87,100,47,47,51,67,79,69,68,43,75,78,80,71,76,105,84,43,75,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,66,73,86,56,82,83,49,112,52,70,10,66,52,120,82,87,83,65,86,97,85,81,109,74,114,65,48,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,67,48,87,122,54,81,104,77,77,43,120,69,109,56,47,49,105,78,67,52,102,111,79,48,103,84,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,43,117,119,100,117,107,10,121,55,100,82,51,90,79,55,79,112,113,47,79,87,75,51,43,100,120,115,48,84,51,117,51,105,102,49,48,85,105,113,90,104,53,72,65,105,66,48,68,69,66,53,85,87,79,116,122,69,113,89,70,98,69,73,71,119,103,116,83,66,75,109,10,66,85,76,99,66,104,56,85,47,113,120,74,52,117,108,83,87,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,158,175,253,218,80,189,142,68,254,146,116,249,27,35,54,121,191,93,58,103,146,108,47,6,254,208,222,50,177,99,223,33,2,32,73,64,164,84,168,148,13,71,123,75,135,28,104,139,26,147,4,252,208,251,113,44,116,150,109,219,12,74,154,45,157,96]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,74,107,76,85,89,48,109,90,82,51,53,55,56,67,71,86,115,122,70,120,121,79,74,65,102,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,120,77,68,77,120,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,120,77,68,77,50,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,69,84,121,89,88,55,77,47,87,109,72,120,116,70,83,103,82,120,83,120,48,118,86,90,55,71,114,52,109,116,76,69,69,53,84,103,10,110,107,74,108,105,78,75,115,118,100,78,68,104,107,56,113,75,85,82,79,107,68,117,88,120,101,69,69,82,53,51,105,67,52,121,114,51,83,80,74,90,90,114,47,43,83,115,88,115,54,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,49,109,69,77,67,65,117,83,43,86,90,105,81,57,87,76,10,85,87,78,97,66,102,82,101,105,80,99,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,82,51,79,87,101,111,108,121,52,118,103,79,99,55,71,53,80,112,102,88,68,97,79,75,118,53,111,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,65,51,109,69,101,79,70,50,97,103,49,76,10,84,90,101,110,81,85,54,98,90,103,109,48,75,48,115,110,109,118,53,111,68,56,47,107,112,103,76,109,106,78,111,67,73,70,109,102,78,120,82,117,110,105,98,56,104,85,57,48,105,43,78,47,51,71,102,47,99,65,53,49,53,66,43,75,10,55,111,121,82,111,97,67,83,50,75,50,116,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,21,210,101,74,62,93,163,69,4,102,235,249,42,254,66,143,226,163,20,219,39,178,238,62,176,204,62,165,86,133,73,114,2,32,115,71,106,86,245,68,55,205,10,252,191,102,85,94,26,181,210,51,10,136,73,114,38,173,234,59,231,180,58,59,38,143]}}]}}}]}}}]},""metadata"":{""metadata"":[{""value"":{""type"":""Buffer"",""data"":[10,2,8,2,18,9,10,7,10,1,1,16,2,24,7]},""signatures"":[{""signature_header"":{""creator"":{""mspid"":""OrdererMSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,114,106,67,67,65,108,83,103,65,119,73,66,65,103,73,85,102,83,65,67,66,68,51,52,57,103,51,68,84,56,103,48,78,103,113,72,105,111,68,114,55,88,103,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,89,106,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,69,84,65,80,66,103,78,86,66,65,103,84,67,69,53,108,100,121,66,90,98,51,74,114,77,82,69,119,68,119,89,68,86,81,81,72,69,119,104,79,90,88,99,103,10,87,87,57,121,97,122,69,85,77,66,73,71,65,49,85,69,67,104,77,76,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,70,122,65,86,66,103,78,86,66,65,77,84,68,109,78,104,76,109,86,52,89,87,49,119,98,71,85,117,10,89,50,57,116,77,66,52,88,68,84,73,122,77,68,73,121,78,68,69,119,77,122,69,119,77,70,111,88,68,84,73,48,77,68,73,121,78,68,69,119,77,122,89,119,77,70,111,119,89,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,10,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,82,81,119,69,103,89,68,86,81,81,75,69,119,116,73,101,88,66,108,99,109,120,108,90,71,100,108,10,99,106,69,81,77,65,52,71,65,49,85,69,67,120,77,72,98,51,74,107,90,88,74,108,99,106,69,81,77,65,52,71,65,49,85,69,65,120,77,72,98,51,74,107,90,88,74,108,99,106,66,90,77,66,77,71,66,121,113,71,83,77,52,57,10,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,57,74,113,98,76,75,68,104,106,74,120,73,73,78,117,118,116,73,110,57,101,56,77,111,119,82,77,108,116,53,110,117,54,83,68,89,121,81,75,76,99,107,10,73,90,50,65,104,109,79,112,56,109,49,54,98,80,68,48,113,119,78,89,70,74,105,97,111,88,56,70,69,118,85,122,49,83,70,109,74,88,87,120,80,98,101,106,103,101,107,119,103,101,89,119,68,103,89,68,86,82,48,80,65,81,72,47,10,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,70,119,113,54,116,50,57,84,121,56,116,109,81,108,54,67,120,121,76,122,113,97,10,85,66,75,103,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,73,51,55,107,108,53,73,104,53,69,122,80,73,65,71,65,47,122,80,98,85,49,78,85,82,122,66,77,67,107,71,65,49,85,100,69,81,81,105,77,67,67,67,10,69,50,57,121,90,71,86,121,90,88,73,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,50,67,67,87,120,118,89,50,70,115,97,71,57,122,100,68,66,98,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,80,101,121,74,104,10,100,72,82,121,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,109,57,121,10,90,71,86,121,90,88,73,105,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,98,51,74,107,90,88,74,108,99,105,74,57,102,84,65,75,66,103,103,113,104,107,106,79,80,81,81,68,65,103,78,73,65,68,66,70,65,105,69,65,10,110,90,100,82,84,72,110,116,47,109,108,81,115,117,97,76,118,105,119,51,106,67,86,51,114,43,47,87,114,67,80,121,115,74,97,116,118,108,73,71,102,80,111,67,73,68,76,48,103,75,101,54,107,121,51,68,107,77,70,66,67,73,56,57,10,85,55,89,78,70,105,100,104,67,83,74,102,50,121,119,110,75,75,77,101,108,54,80,98,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[221,99,215,255,11,52,153,213,29,238,83,23,77,111,1,77,158,241,150,148,63,111,29,233]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,78,199,72,219,115,233,231,21,37,224,182,195,118,92,59,218,59,146,209,253,117,232,162,25,163,146,179,37,126,69,96,7,2,32,51,210,36,177,198,147,105,173,72,201,222,1,74,118,129,22,217,159,185,198,135,185,46,77,77,231,191,113,159,254,75,68]}}]},{},[0],{},{""type"":""Buffer"",""data"":[10,32,54,147,116,176,55,31,129,3,24,192,93,60,126,158,55,195,105,28,119,250,178,216,175,185,113,5,113,253,100,116,228,144]}]}}}"'); -INSERT INTO "fabric_blocks_entry_rows" ("fabric_block_id", "fabric_block_num", "fabric_block_data") VALUES ('59926640c881a3e917c21218b65780507c9b90c1323a336feb57ee5aa15a4d27', '6', '"{""decodedBlock"":{""header"":{""number"":{""low"":6,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[56,127,168,20,39,130,23,134,47,178,98,33,130,229,212,24,119,100,4,255,67,84,125,205,126,233,1,50,181,30,142,88]},""data_hash"":{""type"":""Buffer"",""data"":[89,146,102,64,200,129,163,233,23,194,18,24,182,87,128,80,124,155,144,193,50,58,51,111,235,87,238,90,161,90,77,39]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,56,208,6,97,26,231,97,30,53,66,251,78,166,183,4,236,164,23,214,109,81,118,90,211,107,98,184,83,101,193,43,64,2,32,86,11,57,134,3,150,52,74,192,58,159,167,48,54,46,112,142,146,142,165,51,134,57,124,76,130,251,189,147,69,189,126]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T10:38:30.720Z"",""channel_id"":""mychannel"",""tx_id"":""85cffc26128116ba1e2cde0f2bcb5b7ec94d58389e338ea1febe3878571939da"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,82,66,68,47,117,110,110,106,79,122,68,110,66,88,50,90,71,101,87,110,73,103,69,86,118,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,84,74,109,43,107,81,85,122,118,98,87,77,73,118,103,103,84,74,49,104,87,54,109,10,49,120,52,116,110,50,78,108,114,71,81,76,69,117,73,79,73,107,114,86,53,70,52,112,56,105,109,79,75,48,109,83,56,82,43,83,113,103,109,116,115,121,47,111,47,116,88,56,104,51,51,122,101,52,55,100,99,54,87,65,110,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,99,103,79,85,10,47,79,72,106,90,55,72,48,72,109,105,57,74,77,118,90,112,98,121,116,70,121,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,76,82,98,80,112,67,69,119,122,55,69,83,98,122,47,87,73,48,76,104,43,103,55,83,10,66,77,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,79,68,86,105,77,109,73,122,78,109,82,105,77,84,104,106,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,51,117,67,104,10,69,102,66,86,55,43,74,71,115,111,103,52,65,99,70,49,50,48,114,119,105,98,111,72,104,48,50,114,121,113,99,110,108,57,49,107,47,119,73,103,76,48,119,113,88,107,48,113,104,78,54,104,70,122,102,122,83,108,67,109,103,110,50,77,10,69,80,73,57,52,79,107,111,87,68,82,99,65,84,47,52,55,83,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[18,130,131,149,207,205,142,28,240,241,233,48,25,72,112,51,62,39,17,162,43,70,109,57]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,82,66,68,47,117,110,110,106,79,122,68,110,66,88,50,90,71,101,87,110,73,103,69,86,118,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,84,74,109,43,107,81,85,122,118,98,87,77,73,118,103,103,84,74,49,104,87,54,109,10,49,120,52,116,110,50,78,108,114,71,81,76,69,117,73,79,73,107,114,86,53,70,52,112,56,105,109,79,75,48,109,83,56,82,43,83,113,103,109,116,115,121,47,111,47,116,88,56,104,51,51,122,101,52,55,100,99,54,87,65,110,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,99,103,79,85,10,47,79,72,106,90,55,72,48,72,109,105,57,74,77,118,90,112,98,121,116,70,121,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,76,82,98,80,112,67,69,119,122,55,69,83,98,122,47,87,73,48,76,104,43,103,55,83,10,66,77,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,79,68,86,105,77,109,73,122,78,109,82,105,77,84,104,106,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,51,117,67,104,10,69,102,66,86,55,43,74,71,115,111,103,52,65,99,70,49,50,48,114,119,105,98,111,72,104,48,50,114,121,113,99,110,108,57,49,107,47,119,73,103,76,48,119,113,88,107,48,113,104,78,54,104,70,122,102,122,83,108,67,109,103,110,50,77,10,69,80,73,57,52,79,107,111,87,68,82,99,65,84,47,52,55,83,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[18,130,131,149,207,205,142,28,240,241,233,48,25,72,112,51,62,39,17,162,43,70,109,57]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[177,10,2,1,9,236,160,117,90,242,13,163,225,234,45,99,2,187,180,130,28,80,161,133,64,94,55,213,107,19,126,148]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,74,107,76,85,89,48,109,90,82,51,53,55,56,67,71,86,115,122,70,120,121,79,74,65,102,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,120,77,68,77,120,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,120,77,68,77,50,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,69,84,121,89,88,55,77,47,87,109,72,120,116,70,83,103,82,120,83,120,48,118,86,90,55,71,114,52,109,116,76,69,69,53,84,103,10,110,107,74,108,105,78,75,115,118,100,78,68,104,107,56,113,75,85,82,79,107,68,117,88,120,101,69,69,82,53,51,105,67,52,121,114,51,83,80,74,90,90,114,47,43,83,115,88,115,54,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,49,109,69,77,67,65,117,83,43,86,90,105,81,57,87,76,10,85,87,78,97,66,102,82,101,105,80,99,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,82,51,79,87,101,111,108,121,52,118,103,79,99,55,71,53,80,112,102,88,68,97,79,75,118,53,111,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,65,51,109,69,101,79,70,50,97,103,49,76,10,84,90,101,110,81,85,54,98,90,103,109,48,75,48,115,110,109,118,53,111,68,56,47,107,112,103,76,109,106,78,111,67,73,70,109,102,78,120,82,117,110,105,98,56,104,85,57,48,105,43,78,47,51,71,102,47,99,65,53,49,53,66,43,75,10,55,111,121,82,111,97,67,83,50,75,50,116,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,133,210,89,243,75,31,91,238,210,63,76,151,107,253,70,247,200,170,66,72,128,39,135,17,141,181,37,84,36,44,184,208,2,32,112,18,221,209,45,54,188,84,206,164,185,207,193,34,12,62,172,221,6,143,132,137,81,93,207,212,46,163,88,250,245,182]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,84,98,68,112,113,86,83,104,111,110,112,85,51,50,108,85,55,68,117,86,117,48,106,85,105,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,74,88,73,57,66,109,85,116,53,66,51,88,117,113,122,79,100,56,48,101,74,105,86,106,66,101,71,56,86,54,110,10,102,82,54,103,89,77,103,83,70,84,116,55,108,114,71,118,80,57,111,108,70,76,90,99,82,90,81,121,100,57,55,122,75,86,109,80,87,100,47,47,51,67,79,69,68,43,75,78,80,71,76,105,84,43,75,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,66,73,86,56,82,83,49,112,52,70,10,66,52,120,82,87,83,65,86,97,85,81,109,74,114,65,48,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,67,48,87,122,54,81,104,77,77,43,120,69,109,56,47,49,105,78,67,52,102,111,79,48,103,84,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,43,117,119,100,117,107,10,121,55,100,82,51,90,79,55,79,112,113,47,79,87,75,51,43,100,120,115,48,84,51,117,51,105,102,49,48,85,105,113,90,104,53,72,65,105,66,48,68,69,66,53,85,87,79,116,122,69,113,89,70,98,69,73,71,119,103,116,83,66,75,109,10,66,85,76,99,66,104,56,85,47,113,120,74,52,117,108,83,87,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,204,200,12,168,112,122,158,135,163,31,227,173,72,46,29,214,118,163,158,254,238,128,196,4,20,61,154,104,122,225,229,58,2,32,26,7,213,25,91,62,208,88,202,60,221,243,65,128,213,20,194,112,145,37,216,129,120,126,50,153,251,63,204,63,150,136]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,133,80,150,171,234,225,168,182,72,158,102,190,178,48,162,157,66,213,235,130,166,214,130,63,36,127,64,109,115,239,184,74,2,32,48,200,13,188,185,58,234,226,80,184,175,53,91,72,129,138,81,157,241,28,25,136,54,28,35,71,121,31,199,36,233,218]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T10:38:35.240Z"",""channel_id"":""mychannel"",""tx_id"":""397371e6b2f6111eeb241f9af3e79981da1774648cb57370ed067491c6d080e6"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,82,66,68,47,117,110,110,106,79,122,68,110,66,88,50,90,71,101,87,110,73,103,69,86,118,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,84,74,109,43,107,81,85,122,118,98,87,77,73,118,103,103,84,74,49,104,87,54,109,10,49,120,52,116,110,50,78,108,114,71,81,76,69,117,73,79,73,107,114,86,53,70,52,112,56,105,109,79,75,48,109,83,56,82,43,83,113,103,109,116,115,121,47,111,47,116,88,56,104,51,51,122,101,52,55,100,99,54,87,65,110,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,99,103,79,85,10,47,79,72,106,90,55,72,48,72,109,105,57,74,77,118,90,112,98,121,116,70,121,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,76,82,98,80,112,67,69,119,122,55,69,83,98,122,47,87,73,48,76,104,43,103,55,83,10,66,77,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,79,68,86,105,77,109,73,122,78,109,82,105,77,84,104,106,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,51,117,67,104,10,69,102,66,86,55,43,74,71,115,111,103,52,65,99,70,49,50,48,114,119,105,98,111,72,104,48,50,114,121,113,99,110,108,57,49,107,47,119,73,103,76,48,119,113,88,107,48,113,104,78,54,104,70,122,102,122,83,108,67,109,103,110,50,77,10,69,80,73,57,52,79,107,111,87,68,82,99,65,84,47,52,55,83,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[248,173,102,221,166,254,22,46,61,83,154,49,145,0,221,42,110,8,121,244,222,204,0,146]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,82,66,68,47,117,110,110,106,79,122,68,110,66,88,50,90,71,101,87,110,73,103,69,86,118,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,84,74,109,43,107,81,85,122,118,98,87,77,73,118,103,103,84,74,49,104,87,54,109,10,49,120,52,116,110,50,78,108,114,71,81,76,69,117,73,79,73,107,114,86,53,70,52,112,56,105,109,79,75,48,109,83,56,82,43,83,113,103,109,116,115,121,47,111,47,116,88,56,104,51,51,122,101,52,55,100,99,54,87,65,110,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,99,103,79,85,10,47,79,72,106,90,55,72,48,72,109,105,57,74,77,118,90,112,98,121,116,70,121,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,76,82,98,80,112,67,69,119,122,55,69,83,98,122,47,87,73,48,76,104,43,103,55,83,10,66,77,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,79,68,86,105,77,109,73,122,78,109,82,105,77,84,104,106,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,51,117,67,104,10,69,102,66,86,55,43,74,71,115,111,103,52,65,99,70,49,50,48,114,119,105,98,111,72,104,48,50,114,121,113,99,110,108,57,49,107,47,119,73,103,76,48,119,113,88,107,48,113,104,78,54,104,70,122,102,122,83,108,67,109,103,110,50,77,10,69,80,73,57,52,79,107,111,87,68,82,99,65,84,47,52,55,83,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[248,173,102,221,166,254,22,46,61,83,154,49,145,0,221,42,110,8,121,244,222,204,0,146]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[35,46,131,30,196,184,60,36,101,18,120,25,9,91,161,56,115,239,76,5,111,76,105,71,244,102,114,190,29,189,122,23]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,84,98,68,112,113,86,83,104,111,110,112,85,51,50,108,85,55,68,117,86,117,48,106,85,105,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,74,88,73,57,66,109,85,116,53,66,51,88,117,113,122,79,100,56,48,101,74,105,86,106,66,101,71,56,86,54,110,10,102,82,54,103,89,77,103,83,70,84,116,55,108,114,71,118,80,57,111,108,70,76,90,99,82,90,81,121,100,57,55,122,75,86,109,80,87,100,47,47,51,67,79,69,68,43,75,78,80,71,76,105,84,43,75,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,66,73,86,56,82,83,49,112,52,70,10,66,52,120,82,87,83,65,86,97,85,81,109,74,114,65,48,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,67,48,87,122,54,81,104,77,77,43,120,69,109,56,47,49,105,78,67,52,102,111,79,48,103,84,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,43,117,119,100,117,107,10,121,55,100,82,51,90,79,55,79,112,113,47,79,87,75,51,43,100,120,115,48,84,51,117,51,105,102,49,48,85,105,113,90,104,53,72,65,105,66,48,68,69,66,53,85,87,79,116,122,69,113,89,70,98,69,73,71,119,103,116,83,66,75,109,10,66,85,76,99,66,104,56,85,47,113,120,74,52,117,108,83,87,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,51,40,137,216,128,163,205,146,246,119,94,237,162,77,254,193,107,51,49,183,68,64,142,246,253,243,66,9,212,4,173,28,2,32,107,254,228,170,170,177,43,40,96,9,138,75,0,4,213,144,127,243,77,124,103,22,152,245,39,35,220,37,212,164,68,176]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,74,107,"'); diff --git a/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_transactions.sql b/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_transactions.sql deleted file mode 100644 index ebd3ba0a08..0000000000 --- a/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_transactions.sql +++ /dev/null @@ -1,8 +0,0 @@ -INSERT INTO "fabric_transactions" ("blockid", "blockNumber", "createdt", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincodename", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('cd3ba07bb122fbcd890a33ab3effd7a33677bb997e1b80031a3799e5098adb76', '5', '2023-02-24 07:55:18.252', '200', '', '', '120c120a5f6c6966656379636c65', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,73,52,85,105,48,52,68,100,110,107,83,98,53,55,100,82,53,111,112,118,114,43,102,104,106,67,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,81,48,122,112,81,54,100,111,108,51,85,78,77,115,122,78,114,117,90,57,119,84,98,67,73,50,114,52,78,66,10,89,48,116,68,116,52,51,98,111,81,50,78,87,67,72,109,103,103,85,107,66,101,109,79,54,68,52,122,85,43,109,106,86,85,85,65,86,54,114,76,105,121,69,53,104,47,113,102,108,53,71,87,106,47,54,53,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,74,102,87,79,105,76,55,49,117,10,85,122,109,82,50,104,98,97,76,118,52,49,49,119,99,87,109,122,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,82,83,52,98,47,65,86,98,89,57,52,117,74,51,117,51,83,118,112,43,113,97,65,109,122,114,114,68,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,122,78,50,69,120,77,106,108,107,89,106,69,121,78,50,73,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,67,79,99,116,52,51,56,52,53,51,83,10,89,112,72,98,66,51,102,121,114,56,78,110,49,104,104,104,56,77,76,53,115,106,55,110,119,122,107,83,120,85,77,67,73,65,47,86,67,87,88,115,77,73,102,88,105,85,70,70,80,66,102,65,108,82,120,81,65,108,99,108,114,122,72,118,10,43,75,55,89,56,119,78,102,89,115,113,121,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '165673058f0a3a8c30a4fce90381d1e21b918e81127770cd', '436f6d6d6974436861696e636f6465446566696e6974696f6e,0801120562617369631a03312e30', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '188,159,166,186,198,192,138,21,223,86,162,185,61,163,59,253,190,65,28,213,188,28,4,217,186,82,35,158,33,221,50,135', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '3045022100b97bf9ca7e140d4ab401e38b73036def915d711803832918e035aaaa3d5802b202202cff3f639dca1a477f7b2dfbab8a74b01e74392633559e1db8f602e56b5b4b21', '68', '58613e966d7dfbef9ff062d2ce95f1da18e80bdef89321eca12cf7f5ec648301', '_lifecycle', 'Org2MSP', 'Org1MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence""},{""key"":""namespaces/metadata/basic""}],""range_queries_info"":[],""writes"":[{""key"":""namespaces/fields/basic/Collections"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,0]}},{""key"":""namespaces/fields/basic/EndorsementInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{""key"":""namespaces/fields/basic/Sequence"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[8,1]}},{""key"":""namespaces/fields/basic/ValidationInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{""key"":""namespaces/metadata/basic"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[{""collection_name"":""_implicit_org_Org1MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}},{""collection_name"":""_implicit_org_Org2MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}}]},{""namespace"":""lscc"",""rwset"":{""reads"":[{""key"":""basic""}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""_lifecycle"",""version"":""syscc""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("blockid", "blockNumber", "createdt", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincodename", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('50e8db1365150d4b5722767d108abb40c9dbb25d27b40e07c7db395bfd355cb0', '6', '2023-02-24 07:55:22.512', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '878b7902d42a84af704b778fde2efbb16a543934bc4cb1a9', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '175,123,136,118,225,87,179,53,213,201,57,222,136,70,49,163,171,117,101,117,55,19,165,218,238,199,221,1,22,4,235,24', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '3044022046935ecbd7aa98c0c5d5e37765059d30e8e50b672d8a86bb6dd45535615e025b02203fa94a117d71b1b31b22c0699b3bb2ec4efabfd4a9898dc367343f6e3055d209', '69', 'f8575550109d29f1e0da41d7d1e057c5e10c384fc2aba9e43be2d7c4aee047f4', 'basic', 'Org1MSP', 'Org2MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("blockid", "blockNumber", "createdt", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincodename", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('50e8db1365150d4b5722767d108abb40c9dbb25d27b40e07c7db395bfd355cb0', '6', '2023-02-24 07:55:25.392', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', 'd0ac5465ad8c501718771f770119e56e34b16e47f76a5435', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '248,229,169,223,0,18,218,140,251,171,108,154,254,140,118,227,73,26,43,107,155,92,165,22,107,138,94,102,131,173,26,171', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '3045022100b0aa0cadf4eb76da8742a0f1d24f850e161ed95904c063d38656f5eb877d20b2022001e15e0fbc8608be2151dcf472eacd22e2baeba081929f6e618f077ee3122df7', '70', '6073b7237a8a5bb34268c493c2d51a3d00df9951821abf1d36cc59cc72fc8cfe', 'basic', 'Org1MSP', 'Org2MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("blockid", "blockNumber", "createdt", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincodename", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('f1bee8ff5a74e884afb522b661344a05740257bd64c400b2a0e44716f41b11b2', '7', '2023-02-24 07:55:26.947', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '4fb098857d3fdd1acbefa1098c44e243906dd1b20a2b87c5', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '208,165,95,6,162,15,196,149,89,98,104,68,187,61,228,200,8,161,231,229,122,184,95,93,129,62,105,129,206,185,93,234', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '3044022019cfde0aa8ab2eec883953421831daa89361d58088fa3f2f537525dee9b24749022071217134fc3c14d1ef99b56692d4ad262db0200d47dc51a502efe3515fb9f7db', '71', '0f44f13f2a7f165f22021fb2a50521e08357b5b6d67f9054da9baf5392d5ef5d', 'basic', 'Org1MSP', 'Org2MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("blockid", "blockNumber", "createdt", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincodename", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('39c156bc1340919a62e420cb593e5a87d1a7ce30619c9ef210a85d7cca231c21', '8', '2023-02-24 07:55:29.218', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', 'f1499fc8372d05f277d25f8cb3b4c77ce6ea7e0c6fef68e4', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '94,101,212,181,75,142,193,217,74,172,147,124,210,28,214,144,125,135,182,161,13,167,192,110,219,156,120,102,64,155,207,65', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '304402205083900cabc16ce7b8e43ec660841105c6c1c53c2ece7f1a806fbc7238856136022002edb8acd6e761b36c6baca0eb3142ea0f15e48c9658ca8d83dd740949b194b0', '72', '553e0bed7098738c8d790c7804124b5ae4026594513ea3a93e1198de43f609c4', 'basic', 'Org1MSP', 'Org1MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("blockid", "blockNumber", "createdt", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincodename", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('39c156bc1340919a62e420cb593e5a87d1a7ce30619c9ef210a85d7cca231c21', '8', '2023-02-24 07:55:30.749', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '4533ba53e2fd4e3d401ba7a2b42dd2b19626fb315f3ca700', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '184,114,183,62,22,154,244,139,28,66,136,115,61,241,164,245,103,11,5,15,120,183,238,160,201,152,254,252,34,162,254,12', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '304402201171e566e0504cccb32e9c025e37ba9a2f5a36dcf2fef2880df6e0e9e1ee54b902202a7f4472faef22ed7c5aaab80a62b92b5d03089ecd4b95af17693716438c576c', '73', '12e699cbf2708778e4a4f35b9a1058ba4f5bf7e48023df43706ef2fe1e3c3c79', 'basic', 'Org1MSP', 'Org2MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("blockid", "blockNumber", "createdt", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincodename", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('c6a96a89566e673322dbb2f9553ff036d804eb2ec01a4d40238f79b00f189a16', '9', '2023-02-24 07:55:32.541', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', 'e57317dc8757274673d3841d2f1dc8849c4faf297b24b372', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '162,126,207,209,147,201,46,209,85,164,209,198,83,227,123,94,186,9,162,155,172,254,95,178,201,64,255,4,56,147,227,250', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '304402204ed3cfe563a30a3daa492133d84d9dd9168bf231b29b1a8d31a0975c7108bab302204c8edadae56254d82aa7ebcde2e2908595c0377a969256b1c4f8dbb27e5136b0', '74', '21d58641997009b08d8660da5dc7a829d5936c05a232288212422148b13102e0', 'basic', 'Org1MSP', 'Org1MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("blockid", "blockNumber", "createdt", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincodename", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('c6a96a89566e673322dbb2f9553ff036d804eb2ec01a4d40238f79b00f189a16', '9', '2023-02-24 07:55:34.437', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', 'f913427fed41122f4616339d3f1553677d5a6d255e204d16', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '95,245,154,200,183,213,30,187,232,6,35,183,247,33,95,56,102,19,131,188,189,198,153,102,8,116,62,160,103,218,43,14', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '304402200c73f35129e88635d27266e0ca88166491c343f704738ce60cc08e5ba1173b65022022985d9c5e5ae470bf5e2e7fd80bb49ce906552e5ce9a68ed969c7004c966603', '75', '22098c7688c5dd159069515af0a7c31949c1de01916d9f3e7feff2acb4c40f38', 'basic', 'Org1MSP', 'Org1MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); diff --git a/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_transactions_entry.sql b/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_transactions_entry.sql deleted file mode 100644 index ad1e9d4f6c..0000000000 --- a/packages/cactus-plugin-persistence-fabric/src/test/sql/fabric_transactions_entry.sql +++ /dev/null @@ -1,24 +0,0 @@ -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('97a504319208dbe3f586019e1f60002f03bfcafb6d6d21b45230cd98202bf04e', '121,12,8,11,228,34,113,231,36,126,129,182,171,131,67,102,192,167,38,174,88,174,183,47,105,48,109,248,3,92,97,235', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,72,110,83,79,43,78,109,87,72,122,78,111,80,71,104,52,116,54,106,43,54,112,66,121,84,81,103,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,65,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,69,122,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,82,117,69,121,97,122,98,53,103,121,70,77,79,99,110,72,81,47,67,67,43,77,113,52,80,69,120,73,67,43,10,69,83,101,118,71,108,108,57,68,102,90,107,107,80,68,53,115,89,74,73,82,104,108,110,57,120,110,100,50,106,89,48,102,87,85,100,76,49,70,47,120,81,54,106,57,70,86,101,49,74,112,67,55,80,107,115,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,81,116,71,104,49,54,75,98,68,90,10,114,78,83,121,65,87,81,77,57,120,89,116,54,84,57,105,98,84,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,83,69,90,87,73,51,54,86,73,70,104,90,57,99,67,65,53,83,69,109,78,104,77,75,98,67,67,68,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,48,89,84,90,107,90,68,66,108,78,109,69,119,90,106,99,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,84,109,78,57,112,55,116,57,76,77,10,55,118,101,51,73,117,116,84,71,50,120,88,83,74,47,119,82,119,85,70,71,74,118,57,99,53,104,116,119,121,77,77,65,105,65,67,101,89,56,51,47,104,82,86,80,75,68,81,106,56,82,105,111,57,72,111,117,98,67,70,98,52,101,50,10,104,87,116,102,52,53,51,71,97,77,119,75,101,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[148,58,13,82,40,46,97,141,162,191,104,41,190,183,71,137,56,89,0,172,221,207,244,227]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[225,240,18,233,185,236,235,141,98,141,34,213,140,52,213,73,213,133,40,227,133,142,111,45,109,191,79,33,177,188,188,156]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,68,120,75,110,83,71,83,108,101,105,108,85,74,76,65,83,108,105,73,50,73,104,71,76,52,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,119,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,120,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,88,75,117,65,47,80,121,74,81,116,72,80,108,79,57,72,54,86,98,69,79,106,88,117,85,117,110,107,65,104,10,54,56,67,106,71,103,122,109,120,79,89,106,108,82,47,47,119,106,80,51,115,90,105,54,69,103,73,81,104,103,70,104,79,69,48,49,85,114,90,68,97,113,75,119,104,89,67,98,117,118,48,55,114,107,113,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,68,119,119,87,107,87,72,48,115,120,65,10,51,114,114,108,53,119,115,68,113,65,74,69,99,104,43,110,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,73,121,82,86,102,110,74,87,52,76,70,114,88,113,105,84,97,48,87,48,79,68,118,112,79,81,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,55,100,88,65,80,10,84,70,118,114,106,48,113,112,119,106,52,106,54,57,115,56,113,54,84,104,86,120,66,97,108,90,77,119,49,84,111,120,78,100,97,86,120,103,73,103,87,113,90,47,120,52,69,105,74,55,90,69,68,105,79,53,88,72,43,122,115,120,69,113,10,103,88,113,115,67,97,105,85,77,88,72,76,101,56,68,48,116,43,77,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,99,190,50,206,203,51,6,134,206,32,115,25,222,234,116,207,235,0,76,224,66,87,104,30,107,220,187,206,192,86,215,229,2,32,98,38,62,244,28,230,198,178,242,43,66,192,186,201,74,58,196,108,148,16,243,91,10,7,122,85,137,247,254,47,198,180]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,97,99,77,55,101,116,49,77,65,83,109,100,57,54,100,121,110,86,67,87,90,100,75,87,49,118,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,65,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,69,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,112,72,73,121,82,102,69,83,106,57,110,82,70,90,112,108,101,90,85,75,57,68,82,52,65,97,67,76,67,119,86,71,118,77,109,10,82,89,97,120,53,83,55,115,77,122,57,70,57,114,87,69,102,74,116,76,90,84,121,104,67,105,106,86,90,56,99,78,104,56,100,120,100,77,86,119,79,57,103,51,87,112,55,48,101,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,83,119,89,86,106,108,74,81,72,102,120,56,74,116,78,43,10,83,70,69,109,97,108,49,115,69,75,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,104,71,86,105,78,43,108,83,66,89,87,102,88,65,103,79,85,104,74,106,89,84,67,109,119,103,103,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,76,106,73,100,113,118,65,111,117,69,98,10,111,88,98,66,87,67,108,113,73,122,101,69,55,84,115,70,73,72,112,66,55,53,57,119,88,102,67,115,66,43,102,119,65,105,65,76,81,120,106,43,102,86,108,81,104,113,109,74,48,101,83,121,100,101,122,121,100,51,105,99,81,56,65,83,10,75,53,86,88,75,102,68,53,102,99,114,84,111,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,53,60,155,237,118,164,244,6,59,146,235,41,194,32,150,228,188,30,222,233,61,195,48,226,202,97,70,5,99,69,182,118,2,32,95,25,79,17,30,48,86,166,118,241,205,199,253,132,254,0,79,50,186,140,64,111,93,118,29,91,36,248,0,104,157,47]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('ac41511299d1fcd1a2ddbd78228c5388b5dc814f8fb0a857e84b674907f2221b', '39,22,101,242,200,133,19,92,63,92,54,255,48,201,26,45,114,171,3,67,155,14,205,77,168,196,153,221,39,212,133,236', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,89,71,76,74,68,111,57,82,107,120,103,103,47,83,115,78,100,43,80,89,77,75,88,47,101,81,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,119,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,120,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,97,51,105,113,111,67,100,115,97,70,43,65,43,109,90,78,115,115,66,52,89,43,104,10,88,70,69,104,102,47,81,55,104,47,77,87,119,48,112,53,65,104,43,72,50,75,99,53,98,80,90,103,109,90,75,68,105,85,76,72,117,119,90,67,107,105,100,83,50,85,114,119,52,118,118,49,120,118,53,85,77,119,52,74,85,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,98,57,48,98,10,47,68,43,80,116,85,110,101,110,112,78,81,109,86,56,111,50,117,56,110,80,71,48,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,106,74,70,86,43,99,108,98,103,115,87,116,101,113,74,78,114,82,98,81,52,79,43,10,107,53,65,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,71,69,50,90,71,81,119,90,84,90,104,77,71,89,51,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,113,51,72,118,55,90,10,55,57,86,89,86,86,119,106,86,48,73,98,69,88,68,116,85,103,101,114,118,73,108,87,80,66,69,68,65,108,108,121,121,43,118,87,65,105,66,65,55,107,48,119,76,105,74,50,72,57,83,121,47,49,86,85,86,68,104,104,51,97,120,73,10,79,113,110,99,52,105,122,119,75,111,117,48,57,67,117,119,65,81,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[41,183,106,249,33,129,22,147,68,219,135,252,150,184,216,150,188,177,235,248,168,139,222,27]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[133,197,226,240,105,0,215,249,192,251,72,164,139,175,67,97,22,206,161,147,145,13,222,243,232,34,59,51,65,206,83,117]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,68,120,75,110,83,71,83,108,101,105,108,85,74,76,65,83,108,105,73,50,73,104,71,76,52,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,119,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,120,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,88,75,117,65,47,80,121,74,81,116,72,80,108,79,57,72,54,86,98,69,79,106,88,117,85,117,110,107,65,104,10,54,56,67,106,71,103,122,109,120,79,89,106,108,82,47,47,119,106,80,51,115,90,105,54,69,103,73,81,104,103,70,104,79,69,48,49,85,114,90,68,97,113,75,119,104,89,67,98,117,118,48,55,114,107,113,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,68,119,119,87,107,87,72,48,115,120,65,10,51,114,114,108,53,119,115,68,113,65,74,69,99,104,43,110,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,73,121,82,86,102,110,74,87,52,76,70,114,88,113,105,84,97,48,87,48,79,68,118,112,79,81,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,55,100,88,65,80,10,84,70,118,114,106,48,113,112,119,106,52,106,54,57,115,56,113,54,84,104,86,120,66,97,108,90,77,119,49,84,111,120,78,100,97,86,120,103,73,103,87,113,90,47,120,52,69,105,74,55,90,69,68,105,79,53,88,72,43,122,115,120,69,113,10,103,88,113,115,67,97,105,85,77,88,72,76,101,56,68,48,116,43,77,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,200,35,222,37,76,67,29,49,102,47,206,59,74,133,2,130,132,236,37,219,227,46,181,152,67,161,101,194,119,254,136,125,2,32,43,33,184,51,159,93,238,44,172,127,198,232,76,84,204,200,43,96,212,113,93,41,62,224,193,233,195,39,126,53,31,95]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,97,99,77,55,101,116,49,77,65,83,109,100,57,54,100,121,110,86,67,87,90,100,75,87,49,118,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,65,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,69,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,112,72,73,121,82,102,69,83,106,57,110,82,70,90,112,108,101,90,85,75,57,68,82,52,65,97,67,76,67,119,86,71,118,77,109,10,82,89,97,120,53,83,55,115,77,122,57,70,57,114,87,69,102,74,116,76,90,84,121,104,67,105,106,86,90,56,99,78,104,56,100,120,100,77,86,119,79,57,103,51,87,112,55,48,101,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,83,119,89,86,106,108,74,81,72,102,120,56,74,116,78,43,10,83,70,69,109,97,108,49,115,69,75,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,104,71,86,105,78,43,108,83,66,89,87,102,88,65,103,79,85,104,74,106,89,84,67,109,119,103,103,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,76,106,73,100,113,118,65,111,117,69,98,10,111,88,98,66,87,67,108,113,73,122,101,69,55,84,115,70,73,72,112,66,55,53,57,119,88,102,67,115,66,43,102,119,65,105,65,76,81,120,106,43,102,86,108,81,104,113,109,74,48,101,83,121,100,101,122,121,100,51,105,99,81,56,65,83,10,75,53,86,88,75,102,68,53,102,99,114,84,111,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,65,149,225,73,176,47,40,205,247,49,99,206,178,204,167,188,88,157,206,63,175,243,228,76,9,18,3,99,140,174,79,106,2,32,62,101,6,61,228,45,194,132,219,138,58,13,134,131,1,204,111,170,94,93,249,234,135,116,15,157,212,74,43,224,181,49]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('78d793595c43efae9c9aeaaf1e49cb8f2f5f073ca1ec9ed057ab3bbc28f5c8db', '55,189,72,201,148,149,194,231,87,147,187,59,166,212,209,13,135,247,190,207,9,200,120,140,76,45,199,69,50,183,214,204', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,89,71,76,74,68,111,57,82,107,120,103,103,47,83,115,78,100,43,80,89,77,75,88,47,101,81,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,119,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,120,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,97,51,105,113,111,67,100,115,97,70,43,65,43,109,90,78,115,115,66,52,89,43,104,10,88,70,69,104,102,47,81,55,104,47,77,87,119,48,112,53,65,104,43,72,50,75,99,53,98,80,90,103,109,90,75,68,105,85,76,72,117,119,90,67,107,105,100,83,50,85,114,119,52,118,118,49,120,118,53,85,77,119,52,74,85,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,98,57,48,98,10,47,68,43,80,116,85,110,101,110,112,78,81,109,86,56,111,50,117,56,110,80,71,48,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,106,74,70,86,43,99,108,98,103,115,87,116,101,113,74,78,114,82,98,81,52,79,43,10,107,53,65,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,71,69,50,90,71,81,119,90,84,90,104,77,71,89,51,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,113,51,72,118,55,90,10,55,57,86,89,86,86,119,106,86,48,73,98,69,88,68,116,85,103,101,114,118,73,108,87,80,66,69,68,65,108,108,121,121,43,118,87,65,105,66,65,55,107,48,119,76,105,74,50,72,57,83,121,47,49,86,85,86,68,104,104,51,97,120,73,10,79,113,110,99,52,105,122,119,75,111,117,48,57,67,117,119,65,81,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[19,91,52,227,80,215,22,38,85,56,60,47,196,180,112,52,169,84,75,90,209,254,116,125]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[77,22,154,39,184,142,0,238,162,215,42,72,88,73,178,80,149,21,93,92,122,5,243,62,134,131,125,42,112,98,7,253]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,68,120,75,110,83,71,83,108,101,105,108,85,74,76,65,83,108,105,73,50,73,104,71,76,52,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,119,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,120,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,88,75,117,65,47,80,121,74,81,116,72,80,108,79,57,72,54,86,98,69,79,106,88,117,85,117,110,107,65,104,10,54,56,67,106,71,103,122,109,120,79,89,106,108,82,47,47,119,106,80,51,115,90,105,54,69,103,73,81,104,103,70,104,79,69,48,49,85,114,90,68,97,113,75,119,104,89,67,98,117,118,48,55,114,107,113,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,68,119,119,87,107,87,72,48,115,120,65,10,51,114,114,108,53,119,115,68,113,65,74,69,99,104,43,110,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,73,121,82,86,102,110,74,87,52,76,70,114,88,113,105,84,97,48,87,48,79,68,118,112,79,81,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,55,100,88,65,80,10,84,70,118,114,106,48,113,112,119,106,52,106,54,57,115,56,113,54,84,104,86,120,66,97,108,90,77,119,49,84,111,120,78,100,97,86,120,103,73,103,87,113,90,47,120,52,69,105,74,55,90,69,68,105,79,53,88,72,43,122,115,120,69,113,10,103,88,113,115,67,97,105,85,77,88,72,76,101,56,68,48,116,43,77,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,22,223,109,74,140,14,57,201,157,165,24,144,21,85,241,40,173,104,148,157,123,105,225,112,204,81,60,76,97,173,215,0,2,32,40,10,157,252,208,27,51,231,132,91,230,207,186,79,118,112,120,163,52,25,78,165,238,250,171,32,43,26,154,185,17,101]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,97,99,77,55,101,116,49,77,65,83,109,100,57,54,100,121,110,86,67,87,90,100,75,87,49,118,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,65,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,69,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,112,72,73,121,82,102,69,83,106,57,110,82,70,90,112,108,101,90,85,75,57,68,82,52,65,97,67,76,67,119,86,71,118,77,109,10,82,89,97,120,53,83,55,115,77,122,57,70,57,114,87,69,102,74,116,76,90,84,121,104,67,105,106,86,90,56,99,78,104,56,100,120,100,77,86,119,79,57,103,51,87,112,55,48,101,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,83,119,89,86,106,108,74,81,72,102,120,56,74,116,78,43,10,83,70,69,109,97,108,49,115,69,75,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,104,71,86,105,78,43,108,83,66,89,87,102,88,65,103,79,85,104,74,106,89,84,67,109,119,103,103,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,76,106,73,100,113,118,65,111,117,69,98,10,111,88,98,66,87,67,108,113,73,122,101,69,55,84,115,70,73,72,112,66,55,53,57,119,88,102,67,115,66,43,102,119,65,105,65,76,81,120,106,43,102,86,108,81,104,113,109,74,48,101,83,121,100,101,122,121,100,51,105,99,81,56,65,83,10,75,53,86,88,75,102,68,53,102,99,114,84,111,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,13,63,168,177,207,67,66,203,143,186,228,189,168,255,73,28,105,176,88,21,36,23,110,83,119,114,189,141,203,45,167,99,2,32,45,170,85,240,20,251,211,212,232,79,200,148,184,177,220,228,0,108,252,174,136,44,25,14,47,254,103,150,177,74,208,124]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('0d8a3a6f679e5a97f274aea8a407b666a4816485b426283af89e37288e5009bf', '135,47,161,29,83,155,250,57,123,131,25,47,58,29,238,31,197,227,215,174,187,116,179,165,190,40,231,102,150,35,201,206', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,98,81,69,75,48,101,116,118,117,84,120,116,87,66,105,111,107,103,43,97,69,78,56,79,105,107,81,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,73,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,73,49,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,84,122,117,70,112,73,89,67,87,107,103,80,110,72,83,84,118,65,50,84,103,86,107,115,78,106,73,57,88,82,10,119,101,121,83,76,106,77,50,79,53,86,85,122,84,84,89,111,85,115,72,53,77,89,53,110,112,78,75,52,76,86,65,120,104,114,113,86,54,114,122,99,100,103,54,98,82,119,113,102,116,74,54,102,54,107,84,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,71,66,114,90,73,111,76,121,110,10,83,97,50,103,68,97,73,104,47,77,108,78,98,119,84,89,114,84,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,83,52,122,70,107,49,83,77,113,55,74,54,48,112,85,99,112,99,76,80,83,49,118,68,81,88,57,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,122,77,68,100,109,77,50,86,106,78,68,70,104,78,84,85,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,76,77,76,115,57,72,83,90,52,73,10,72,53,48,98,82,70,84,98,43,113,86,80,120,98,103,86,47,120,117,82,83,69,74,54,84,55,109,85,50,116,118,115,65,105,65,100,116,108,47,121,103,117,122,119,104,53,122,48,80,109,83,81,69,73,114,112,81,52,83,88,79,48,105,72,10,72,122,121,77,113,122,82,102,117,119,112,109,50,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[251,164,1,189,151,136,61,124,127,136,215,180,183,96,113,101,216,190,39,83,174,18,121,46]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[186,27,174,198,125,95,90,151,221,159,20,164,204,138,252,14,105,71,155,34,169,104,246,127,223,129,239,116,12,42,151,23]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,114,111,120,111,104,97,98,52,88,113,90,90,52,54,106,119,79,71,88,121,72,82,70,71,105,65,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,121,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,121,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,119,101,103,72,107,51,85,120,111,47,50,88,121,120,89,47,90,65,85,104,86,81,66,49,105,106,118,55,106,53,10,122,98,97,107,105,73,114,69,113,112,82,70,56,113,68,115,112,119,116,88,65,81,115,71,76,82,74,110,70,98,103,101,65,119,119,86,51,70,88,85,100,71,110,82,70,72,90,83,120,120,107,90,99,71,50,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,113,112,112,68,117,118,97,107,68,103,10,55,98,68,78,80,110,102,105,50,109,113,53,78,120,109,111,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,122,110,109,98,65,48,87,114,118,43,57,84,73,76,90,86,118,120,76,100,88,122,73,106,110,71,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,114,86,83,105,43,10,68,119,121,71,65,69,122,109,108,117,120,71,116,121,111,110,87,74,49,103,111,77,113,114,99,111,70,88,103,121,76,70,87,43,116,107,50,119,73,103,74,90,89,79,90,89,98,52,43,74,75,89,76,71,116,100,86,53,107,81,111,75,72,120,10,114,89,75,106,74,51,51,109,71,54,66,56,48,77,75,66,72,48,81,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,172,184,80,223,141,171,110,172,165,10,157,125,76,82,191,13,96,38,125,76,91,101,132,102,233,252,159,57,181,209,196,179,2,32,93,149,71,197,2,87,149,110,143,73,138,24,60,2,23,116,95,53,229,186,221,13,130,113,23,40,141,224,116,158,154,253]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,72,48,107,113,72,54,73,119,82,122,48,111,121,76,51,116,118,69,116,119,98,105,107,89,51,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,73,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,73,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,57,53,106,82,100,75,80,85,55,76,100,43,116,117,113,82,120,86,57,90,108,120,102,82,79,83,70,47,65,88,71,102,53,90,56,86,10,50,90,84,112,87,106,75,80,110,67,73,57,43,74,117,86,82,86,113,78,65,114,71,109,107,112,84,108,83,49,98,118,86,114,99,69,98,78,57,87,79,99,78,76,73,114,43,69,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,88,70,71,81,108,119,77,99,98,78,78,57,57,69,73,118,10,50,68,89,108,65,105,54,85,53,78,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,77,120,90,78,85,106,75,117,121,101,116,75,86,72,75,88,67,122,48,116,98,119,48,70,47,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,104,112,108,104,116,80,70,115,89,79,10,98,57,116,110,98,89,109,113,100,117,103,73,114,67,54,86,81,54,79,122,83,90,55,74,81,87,52,111,104,74,110,113,65,105,66,111,67,50,70,90,97,85,111,80,80,105,87,112,70,47,82,74,107,98,47,47,89,84,49,120,50,77,102,90,10,83,69,43,50,75,101,120,99,98,99,120,57,108,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,167,35,255,141,134,219,43,19,198,183,65,105,201,214,2,56,15,180,42,184,191,194,185,182,150,118,74,5,219,226,23,231,2,32,6,190,7,191,40,87,214,227,60,166,17,147,18,246,66,76,144,201,114,83,28,131,122,225,205,63,85,248,56,12,20,135]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('f98cfea3491552cdb5f0916f766ea61549598a0ac04001f73a65bb5a17d99d9b', '68,242,0,239,172,0,76,229,109,242,185,178,137,105,125,119,31,221,142,27,8,150,35,142,110,76,186,146,127,87,202,254', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,69,113,89,51,78,47,79,49,82,48,70,116,78,52,107,98,70,65,97,86,100,47,72,114,83,100,65,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,121,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,121,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,120,66,100,67,121,80,102,120,101,48,98,53,112,49,84,54,56,107,88,97,48,79,107,99,10,115,65,51,53,73,99,71,98,78,98,68,54,108,88,86,87,105,104,111,55,48,118,52,48,78,98,104,84,77,99,48,114,83,51,79,114,55,99,112,89,81,69,72,97,122,102,120,77,70,122,72,89,82,81,111,87,97,87,55,43,121,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,112,54,89,104,10,118,82,71,115,70,108,87,119,97,104,86,70,86,70,88,86,43,80,114,105,76,108,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,47,79,101,90,115,68,82,97,117,47,55,49,77,103,116,108,87,47,69,116,49,102,77,105,10,79,99,89,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,65,51,90,106,78,108,89,122,81,120,89,84,85,49,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,70,103,80,55,43,10,100,69,97,48,116,81,106,80,113,76,88,52,119,48,108,67,107,85,111,106,106,110,89,117,108,65,97,90,54,50,108,117,108,102,116,103,80,65,73,103,68,52,107,104,56,72,48,90,72,50,52,120,70,112,72,79,108,55,73,111,48,101,120,86,10,50,86,119,53,54,85,54,101,114,72,65,118,101,104,69,112,88,52,81,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[143,32,7,200,230,177,146,189,200,111,4,137,88,50,136,3,70,124,61,255,173,254,182,109]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[43,235,160,54,35,106,148,13,223,15,210,9,188,190,151,164,70,10,225,123,4,245,243,225,104,61,2,111,171,211,192,72]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,72,48,107,113,72,54,73,119,82,122,48,111,121,76,51,116,118,69,116,119,98,105,107,89,51,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,73,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,73,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,57,53,106,82,100,75,80,85,55,76,100,43,116,117,113,82,120,86,57,90,108,120,102,82,79,83,70,47,65,88,71,102,53,90,56,86,10,50,90,84,112,87,106,75,80,110,67,73,57,43,74,117,86,82,86,113,78,65,114,71,109,107,112,84,108,83,49,98,118,86,114,99,69,98,78,57,87,79,99,78,76,73,114,43,69,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,88,70,71,81,108,119,77,99,98,78,78,57,57,69,73,118,10,50,68,89,108,65,105,54,85,53,78,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,77,120,90,78,85,106,75,117,121,101,116,75,86,72,75,88,67,122,48,116,98,119,48,70,47,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,104,112,108,104,116,80,70,115,89,79,10,98,57,116,110,98,89,109,113,100,117,103,73,114,67,54,86,81,54,79,122,83,90,55,74,81,87,52,111,104,74,110,113,65,105,66,111,67,50,70,90,97,85,111,80,80,105,87,112,70,47,82,74,107,98,47,47,89,84,49,120,50,77,102,90,10,83,69,43,50,75,101,120,99,98,99,120,57,108,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,188,6,221,131,233,217,248,181,57,153,95,7,230,169,75,141,10,205,117,219,210,117,166,20,228,29,74,186,87,93,53,159,2,32,9,113,102,55,133,86,153,230,58,218,160,71,17,127,157,125,188,62,144,164,218,80,139,5,79,110,198,212,136,48,89,35]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,114,111,120,111,104,97,98,52,88,113,90,90,52,54,106,119,79,71,88,121,72,82,70,71,105,65,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,121,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,121,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,119,101,103,72,107,51,85,120,111,47,50,88,121,120,89,47,90,65,85,104,86,81,66,49,105,106,118,55,106,53,10,122,98,97,107,105,73,114,69,113,112,82,70,56,113,68,115,112,119,116,88,65,81,115,71,76,82,74,110,70,98,103,101,65,119,119,86,51,70,88,85,100,71,110,82,70,72,90,83,120,120,107,90,99,71,50,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,113,112,112,68,117,118,97,107,68,103,10,55,98,68,78,80,110,102,105,50,109,113,53,78,120,109,111,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,122,110,109,98,65,48,87,114,118,43,57,84,73,76,90,86,118,120,76,100,88,122,73,106,110,71,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,114,86,83,105,43,10,68,119,121,71,65,69,122,109,108,117,120,71,116,121,111,110,87,74,49,103,111,77,113,114,99,111,70,88,103,121,76,70,87,43,116,107,50,119,73,103,74,90,89,79,90,89,98,52,43,74,75,89,76,71,116,100,86,53,107,81,111,75,72,120,10,114,89,75,106,74,51,51,109,71,54,66,56,48,77,75,66,72,48,81,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,63,5,207,228,104,139,126,205,200,12,76,193,146,62,125,57,119,231,228,25,212,89,20,162,234,58,111,174,84,37,170,197,2,32,24,144,2,219,79,45,50,177,129,59,137,20,69,248,153,203,240,96,63,209,183,165,30,10,34,113,177,4,199,160,228,76]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('e31b4b94a7a9b7e0cf4394d51436b663726ac3161cab8b94972a9b1e4dd0e63d', '171,192,117,80,187,153,68,47,40,219,127,166,123,77,142,66,202,226,78,236,250,180,48,149,58,114,49,72,126,9,72,203', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,69,113,89,51,78,47,79,49,82,48,70,116,78,52,107,98,70,65,97,86,100,47,72,114,83,100,65,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,121,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,121,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,120,66,100,67,121,80,102,120,101,48,98,53,112,49,84,54,56,107,88,97,48,79,107,99,10,115,65,51,53,73,99,71,98,78,98,68,54,108,88,86,87,105,104,111,55,48,118,52,48,78,98,104,84,77,99,48,114,83,51,79,114,55,99,112,89,81,69,72,97,122,102,120,77,70,122,72,89,82,81,111,87,97,87,55,43,121,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,112,54,89,104,10,118,82,71,115,70,108,87,119,97,104,86,70,86,70,88,86,43,80,114,105,76,108,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,47,79,101,90,115,68,82,97,117,47,55,49,77,103,116,108,87,47,69,116,49,102,77,105,10,79,99,89,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,65,51,90,106,78,108,89,122,81,120,89,84,85,49,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,70,103,80,55,43,10,100,69,97,48,116,81,106,80,113,76,88,52,119,48,108,67,107,85,111,106,106,110,89,117,108,65,97,90,54,50,108,117,108,102,116,103,80,65,73,103,68,52,107,104,56,72,48,90,72,50,52,120,70,112,72,79,108,55,73,111,48,101,120,86,10,50,86,119,53,54,85,54,101,114,72,65,118,101,104,69,112,88,52,81,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[55,141,158,18,30,205,134,55,136,226,177,159,243,154,45,22,5,41,163,61,217,74,117,252]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[120,134,231,242,212,112,1,54,143,148,91,205,158,123,85,10,150,141,221,236,172,57,120,143,10,68,45,39,23,95,238,245]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,72,48,107,113,72,54,73,119,82,122,48,111,121,76,51,116,118,69,116,119,98,105,107,89,51,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,73,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,73,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,57,53,106,82,100,75,80,85,55,76,100,43,116,117,113,82,120,86,57,90,108,120,102,82,79,83,70,47,65,88,71,102,53,90,56,86,10,50,90,84,112,87,106,75,80,110,67,73,57,43,74,117,86,82,86,113,78,65,114,71,109,107,112,84,108,83,49,98,118,86,114,99,69,98,78,57,87,79,99,78,76,73,114,43,69,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,88,70,71,81,108,119,77,99,98,78,78,57,57,69,73,118,10,50,68,89,108,65,105,54,85,53,78,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,77,120,90,78,85,106,75,117,121,101,116,75,86,72,75,88,67,122,48,116,98,119,48,70,47,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,104,112,108,104,116,80,70,115,89,79,10,98,57,116,110,98,89,109,113,100,117,103,73,114,67,54,86,81,54,79,122,83,90,55,74,81,87,52,111,104,74,110,113,65,105,66,111,67,50,70,90,97,85,111,80,80,105,87,112,70,47,82,74,107,98,47,47,89,84,49,120,50,77,102,90,10,83,69,43,50,75,101,120,99,98,99,120,57,108,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,185,211,56,146,128,112,45,80,244,232,179,117,82,204,146,82,235,196,38,197,199,223,11,100,165,76,10,65,34,122,142,224,2,32,23,133,119,251,10,60,113,12,210,17,116,106,228,166,30,58,135,55,17,214,128,57,85,117,50,202,210,243,237,81,137,142]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,114,111,120,111,104,97,98,52,88,113,90,90,52,54,106,119,79,71,88,121,72,82,70,71,105,65,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,121,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,121,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,119,101,103,72,107,51,85,120,111,47,50,88,121,120,89,47,90,65,85,104,86,81,66,49,105,106,118,55,106,53,10,122,98,97,107,105,73,114,69,113,112,82,70,56,113,68,115,112,119,116,88,65,81,115,71,76,82,74,110,70,98,103,101,65,119,119,86,51,70,88,85,100,71,110,82,70,72,90,83,120,120,107,90,99,71,50,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,113,112,112,68,117,118,97,107,68,103,10,55,98,68,78,80,110,102,105,50,109,113,53,78,120,109,111,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,122,110,109,98,65,48,87,114,118,43,57,84,73,76,90,86,118,120,76,100,88,122,73,106,110,71,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,114,86,83,105,43,10,68,119,121,71,65,69,122,109,108,117,120,71,116,121,111,110,87,74,49,103,111,77,113,114,99,111,70,88,103,121,76,70,87,43,116,107,50,119,73,103,74,90,89,79,90,89,98,52,43,74,75,89,76,71,116,100,86,53,107,81,111,75,72,120,10,114,89,75,106,74,51,51,109,71,54,66,56,48,77,75,66,72,48,81,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,70,148,93,114,154,41,173,186,219,228,119,134,64,35,160,220,84,249,98,10,108,95,161,200,109,191,39,223,51,250,1,222,2,32,26,51,251,39,53,4,211,84,209,230,123,56,212,210,98,3,63,77,236,253,232,203,109,253,201,88,70,171,3,51,243,192]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('6b53958c89fa90cecf48ea46a1f21d89810cf010c35f8a2fb06324d157894066', '196,130,93,89,20,103,25,101,202,57,199,8,196,225,58,219,138,7,178,147,150,41,169,64,171,18,52,151,181,13,150,239', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,117,78,114,55,102,54,87,98,88,88,113,69,80,52,89,68,85,114,86,107,98,72,76,70,117,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,81,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,81,49,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,71,83,71,109,47,83,86,48,74,50,99,49,54,68,103,74,54,90,76,65,90,90,73,99,43,55,69,121,122,10,68,78,119,76,70,57,72,111,105,54,90,122,104,72,115,73,107,57,73,57,109,117,110,65,83,85,84,108,107,43,77,87,97,102,55,55,101,107,50,71,49,101,56,100,108,49,115,67,89,79,53,89,112,115,70,84,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,84,121,86,84,76,77,68,85,122,104,10,75,90,75,69,97,80,117,78,56,110,53,82,66,77,99,65,54,84,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,84,90,84,74,83,43,121,67,105,69,79,105,51,55,120,117,82,118,67,81,85,53,50,111,117,69,52,84,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,120,77,87,85,119,77,68,86,109,89,84,104,105,78,106,103,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,99,83,82,121,71,88,66,106,101,75,10,53,51,66,47,97,104,111,67,86,51,100,84,90,90,97,76,48,75,115,48,101,103,112,115,121,77,90,107,81,115,82,116,65,105,65,81,80,48,48,81,115,109,43,65,113,113,109,66,70,72,49,113,53,103,55,118,102,105,66,43,76,72,73,122,10,56,52,83,56,73,122,104,54,120,114,104,104,83,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[157,255,182,197,228,163,207,59,2,50,8,173,206,196,230,215,249,32,237,170,99,12,186,224]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[255,213,104,94,97,215,90,37,190,101,92,242,193,96,107,88,158,0,41,155,2,246,111,130,18,42,93,122,25,71,166,8]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,99,109,90,67,52,83,72,84,120,48,83,108,70,110,86,55,117,75,80,119,122,52,54,101,113,65,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,48,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,48,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,119,111,111,71,82,108,48,103,104,112,47,48,114,108,66,76,56,104,90,110,122,121,114,70,53,114,109,101,76,113,10,51,81,116,86,102,110,82,112,120,99,106,73,77,109,43,78,73,115,77,67,98,80,118,109,115,89,53,75,48,78,98,107,52,99,116,71,77,80,108,81,105,77,48,112,121,86,57,50,114,111,50,113,67,114,87,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,71,47,77,53,66,83,121,102,49,69,102,10,103,103,83,69,47,54,72,102,70,53,107,84,52,118,87,112,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,52,55,48,98,72,80,48,85,75,110,72,82,111,53,82,77,122,114,106,121,111,81,89,117,106,86,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,121,74,107,74,78,10,50,47,86,57,117,81,97,113,102,113,118,110,104,57,98,85,67,122,90,97,68,43,110,71,78,50,90,72,47,52,119,68,53,87,116,85,90,81,73,103,78,83,112,76,103,53,118,78,76,67,107,48,53,106,100,79,84,79,99,74,70,84,98,97,10,54,57,113,105,68,52,70,117,99,52,78,97,76,89,84,113,76,56,52,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,212,157,90,73,230,106,58,29,87,221,92,136,227,101,232,181,93,224,0,147,141,104,40,113,157,216,103,49,190,192,142,201,2,32,56,22,245,183,138,183,106,11,91,238,98,88,44,70,130,144,164,193,29,253,85,228,130,42,138,92,172,52,179,184,84,230]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,75,43,81,73,86,78,104,104,104,101,83,43,115,107,54,77,87,112,51,52,120,97,109,49,105,116,85,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,81,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,81,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,52,102,43,50,110,122,75,55,69,49,113,78,77,67,47,84,119,56,89,67,85,99,105,75,73,80,114,50,115,118,103,48,66,97,73,112,10,83,115,100,115,70,49,122,43,113,88,66,107,111,88,118,98,52,71,70,79,73,51,79,70,56,101,116,113,73,116,89,81,108,43,97,101,97,120,100,67,116,43,76,86,78,43,72,78,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,120,111,50,49,55,65,76,52,66,57,118,84,116,121,89,106,10,83,78,69,89,122,113,75,72,104,76,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,50,85,121,85,118,115,103,111,104,68,111,116,43,56,98,107,98,119,107,70,79,100,113,76,104,79,69,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,104,84,78,51,112,80,71,52,121,106,67,10,112,81,50,101,87,99,109,105,74,67,74,71,100,115,74,75,101,55,87,47,120,103,79,72,112,55,102,109,99,67,85,67,73,68,107,78,110,106,49,120,66,105,73,99,110,119,69,57,109,57,52,54,79,108,110,57,111,70,87,43,43,83,56,48,10,86,73,68,71,68,74,79,51,122,72,43,56,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,130,152,216,100,171,67,166,136,115,140,43,111,255,203,49,103,166,158,37,219,50,219,94,15,44,56,8,107,37,213,158,101,2,32,38,105,30,35,8,65,176,192,3,33,198,153,244,49,39,52,78,3,92,247,138,3,47,53,195,66,195,130,220,251,176,112]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('8c47dcdd4caa57cc9f00bd98a01125cd128ff6d093e9f5bbd71164e88df3b570', '192,89,141,115,68,224,166,6,69,251,196,184,29,26,197,159,32,56,59,150,32,174,191,73,255,50,132,160,14,134,125,126', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,102,70,90,47,121,71,54,107,69,103,89,81,109,87,88,52,79,51,120,122,82,116,110,82,66,117,99,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,48,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,48,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,48,48,119,57,71,48,82,109,100,105,66,100,76,53,73,67,54,119,116,87,100,109,55,49,10,47,112,77,54,105,107,65,114,119,47,57,103,86,86,110,83,115,112,106,79,43,68,89,57,97,74,48,98,113,88,49,117,100,51,55,70,75,101,54,71,85,55,50,118,111,109,122,70,87,70,73,84,103,121,120,101,83,89,79,52,68,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,106,82,110,76,10,104,90,82,89,104,119,89,54,120,113,89,84,74,121,104,116,100,119,73,75,69,85,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,98,106,118,82,115,99,47,82,81,113,99,100,71,106,108,69,122,79,117,80,75,104,66,105,10,54,78,85,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,84,70,108,77,68,65,49,90,109,69,52,89,106,89,52,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,86,50,82,77,84,67,10,66,86,47,102,102,49,67,90,72,103,106,109,117,97,47,84,97,78,77,84,75,43,53,98,49,99,53,52,75,80,118,66,70,107,84,74,65,105,65,76,70,111,50,57,87,72,116,78,86,57,120,56,72,85,68,112,67,53,105,55,112,112,75,121,10,104,52,70,86,85,117,120,116,50,111,55,111,120,78,47,88,79,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[217,138,246,206,70,205,188,252,3,17,199,71,198,103,200,39,183,50,208,63,139,50,59,101]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[42,210,161,37,81,208,108,162,130,81,77,142,107,202,88,239,213,207,107,93,174,27,50,12,126,234,211,188,234,206,216,50]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,75,43,81,73,86,78,104,104,104,101,83,43,115,107,54,77,87,112,51,52,120,97,109,49,105,116,85,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,81,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,81,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,52,102,43,50,110,122,75,55,69,49,113,78,77,67,47,84,119,56,89,67,85,99,105,75,73,80,114,50,115,118,103,48,66,97,73,112,10,83,115,100,115,70,49,122,43,113,88,66,107,111,88,118,98,52,71,70,79,73,51,79,70,56,101,116,113,73,116,89,81,108,43,97,101,97,120,100,67,116,43,76,86,78,43,72,78,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,120,111,50,49,55,65,76,52,66,57,118,84,116,121,89,106,10,83,78,69,89,122,113,75,72,104,76,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,50,85,121,85,118,115,103,111,104,68,111,116,43,56,98,107,98,119,107,70,79,100,113,76,104,79,69,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,104,84,78,51,112,80,71,52,121,106,67,10,112,81,50,101,87,99,109,105,74,67,74,71,100,115,74,75,101,55,87,47,120,103,79,72,112,55,102,109,99,67,85,67,73,68,107,78,110,106,49,120,66,105,73,99,110,119,69,57,109,57,52,54,79,108,110,57,111,70,87,43,43,83,56,48,10,86,73,68,71,68,74,79,51,122,72,43,56,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,123,21,5,121,210,99,16,71,133,66,112,12,225,21,209,104,197,24,123,115,135,29,125,65,219,102,68,75,137,60,65,37,2,32,106,75,75,13,28,42,164,115,100,190,5,103,15,33,38,255,178,185,232,99,61,128,90,234,96,4,4,154,227,203,81,121]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,99,109,90,67,52,83,72,84,120,48,83,108,70,110,86,55,117,75,80,119,122,52,54,101,113,65,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,48,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,48,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,119,111,111,71,82,108,48,103,104,112,47,48,114,108,66,76,56,104,90,110,122,121,114,70,53,114,109,101,76,113,10,51,81,116,86,102,110,82,112,120,99,106,73,77,109,43,78,73,115,77,67,98,80,118,109,115,89,53,75,48,78,98,107,52,99,116,71,77,80,108,81,105,77,48,112,121,86,57,50,114,111,50,113,67,114,87,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,71,47,77,53,66,83,121,102,49,69,102,10,103,103,83,69,47,54,72,102,70,53,107,84,52,118,87,112,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,52,55,48,98,72,80,48,85,75,110,72,82,111,53,82,77,122,114,106,121,111,81,89,117,106,86,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,121,74,107,74,78,10,50,47,86,57,117,81,97,113,102,113,118,110,104,57,98,85,67,122,90,97,68,43,110,71,78,50,90,72,47,52,119,68,53,87,116,85,90,81,73,103,78,83,112,76,103,53,118,78,76,67,107,48,53,106,100,79,84,79,99,74,70,84,98,97,10,54,57,113,105,68,52,70,117,99,52,78,97,76,89,84,113,76,56,52,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,2,198,89,185,169,50,43,150,229,248,192,58,168,106,9,57,132,57,186,18,2,10,26,205,69,26,150,108,219,27,13,111,2,32,124,223,132,36,205,218,69,183,160,47,145,129,58,134,12,32,178,128,27,44,27,40,73,224,56,158,61,176,91,130,249,168]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('c759fde0301efb2d18021a957981fe0b16333c4a2b7820fdd4042d3e24bd7c26', '187,106,234,209,167,195,214,101,17,251,119,44,10,145,171,187,127,194,148,113,193,58,166,166,229,205,214,230,177,123,226,248', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,102,70,90,47,121,71,54,107,69,103,89,81,109,87,88,52,79,51,120,122,82,116,110,82,66,117,99,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,48,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,48,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,48,48,119,57,71,48,82,109,100,105,66,100,76,53,73,67,54,119,116,87,100,109,55,49,10,47,112,77,54,105,107,65,114,119,47,57,103,86,86,110,83,115,112,106,79,43,68,89,57,97,74,48,98,113,88,49,117,100,51,55,70,75,101,54,71,85,55,50,118,111,109,122,70,87,70,73,84,103,121,120,101,83,89,79,52,68,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,106,82,110,76,10,104,90,82,89,104,119,89,54,120,113,89,84,74,121,104,116,100,119,73,75,69,85,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,98,106,118,82,115,99,47,82,81,113,99,100,71,106,108,69,122,79,117,80,75,104,66,105,10,54,78,85,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,84,70,108,77,68,65,49,90,109,69,52,89,106,89,52,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,86,50,82,77,84,67,10,66,86,47,102,102,49,67,90,72,103,106,109,117,97,47,84,97,78,77,84,75,43,53,98,49,99,53,52,75,80,118,66,70,107,84,74,65,105,65,76,70,111,50,57,87,72,116,78,86,57,120,56,72,85,68,112,67,53,105,55,112,112,75,121,10,104,52,70,86,85,117,120,116,50,111,55,111,120,78,47,88,79,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[60,216,190,94,76,25,241,201,248,1,146,165,20,240,189,232,39,26,164,222,184,209,199,41]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[234,74,231,243,176,188,17,66,125,48,84,122,33,218,59,138,228,169,231,3,255,135,136,205,5,7,206,119,222,113,135,33]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,75,43,81,73,86,78,104,104,104,101,83,43,115,107,54,77,87,112,51,52,120,97,109,49,105,116,85,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,81,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,81,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,52,102,43,50,110,122,75,55,69,49,113,78,77,67,47,84,119,56,89,67,85,99,105,75,73,80,114,50,115,118,103,48,66,97,73,112,10,83,115,100,115,70,49,122,43,113,88,66,107,111,88,118,98,52,71,70,79,73,51,79,70,56,101,116,113,73,116,89,81,108,43,97,101,97,120,100,67,116,43,76,86,78,43,72,78,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,120,111,50,49,55,65,76,52,66,57,118,84,116,121,89,106,10,83,78,69,89,122,113,75,72,104,76,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,50,85,121,85,118,115,103,111,104,68,111,116,43,56,98,107,98,119,107,70,79,100,113,76,104,79,69,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,104,84,78,51,112,80,71,52,121,106,67,10,112,81,50,101,87,99,109,105,74,67,74,71,100,115,74,75,101,55,87,47,120,103,79,72,112,55,102,109,99,67,85,67,73,68,107,78,110,106,49,120,66,105,73,99,110,119,69,57,109,57,52,54,79,108,110,57,111,70,87,43,43,83,56,48,10,86,73,68,71,68,74,79,51,122,72,43,56,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,213,229,186,80,50,15,95,55,107,45,149,150,82,151,111,144,243,236,35,132,251,141,138,159,208,65,200,206,254,115,176,140,2,32,32,98,48,178,92,215,3,29,221,8,156,46,222,0,40,72,10,168,244,131,183,89,225,156,63,10,117,0,66,222,192,97]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,99,109,90,67,52,83,72,84,120,48,83,108,70,110,86,55,117,75,80,119,122,52,54,101,113,65,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,48,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,48,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,119,111,111,71,82,108,48,103,104,112,47,48,114,108,66,76,56,104,90,110,122,121,114,70,53,114,109,101,76,113,10,51,81,116,86,102,110,82,112,120,99,106,73,77,109,43,78,73,115,77,67,98,80,118,109,115,89,53,75,48,78,98,107,52,99,116,71,77,80,108,81,105,77,48,112,121,86,57,50,114,111,50,113,67,114,87,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,71,47,77,53,66,83,121,102,49,69,102,10,103,103,83,69,47,54,72,102,70,53,107,84,52,118,87,112,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,52,55,48,98,72,80,48,85,75,110,72,82,111,53,82,77,122,114,106,121,111,81,89,117,106,86,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,121,74,107,74,78,10,50,47,86,57,117,81,97,113,102,113,118,110,104,57,98,85,67,122,90,97,68,43,110,71,78,50,90,72,47,52,119,68,53,87,116,85,90,81,73,103,78,83,112,76,103,53,118,78,76,67,107,48,53,106,100,79,84,79,99,74,70,84,98,97,10,54,57,113,105,68,52,70,117,99,52,78,97,76,89,84,113,76,56,52,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,1,130,98,92,135,181,154,156,95,23,128,233,44,72,6,59,33,99,99,135,66,198,115,61,181,90,208,243,182,69,17,16,2,32,122,130,255,183,138,9,114,94,126,152,11,160,59,198,235,35,116,60,239,45,148,19,132,139,241,149,184,112,5,79,29,106]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('ad9b02b1626a89739083be36fa77b831112b50da9bacf39efdf8fa0fb2215127', '206,19,251,89,135,215,185,113,240,59,88,202,186,243,40,237,149,132,173,194,10,20,222,220,133,207,92,120,113,99,22,127', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,70,81,120,85,108,54,71,103,106,108,48,65,68,80,88,56,65,85,55,50,47,115,118,113,75,54,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,85,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,85,49,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,48,83,56,67,51,54,74,66,57,121,48,104,72,101,83,116,72,74,76,87,120,86,111,122,112,112,76,75,99,10,86,89,89,105,52,112,83,84,103,54,110,103,121,74,48,106,80,71,55,70,112,115,70,52,78,51,52,114,78,65,82,76,83,86,120,86,110,68,106,112,73,113,66,89,57,103,104,102,118,48,122,69,89,57,119,69,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,57,75,99,65,79,118,115,89,118,10,78,90,87,47,117,75,66,51,73,118,106,103,86,105,111,104,115,122,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,83,54,100,70,69,80,85,80,105,112,97,101,116,102,55,109,54,103,66,82,119,77,43,76,85,103,109,84,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,122,90,68,89,49,77,106,65,121,78,106,108,104,90,68,89,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,69,66,65,65,107,81,88,98,47,121,99,115,10,89,68,119,79,103,97,113,120,99,99,101,117,111,117,102,53,66,119,74,107,98,104,74,76,73,111,74,110,43,51,56,67,73,68,47,68,54,112,79,69,112,88,98,43,102,85,43,79,81,108,49,121,116,106,122,117,49,87,65,111,89,103,88,113,10,90,85,121,112,98,72,73,73,99,52,68,43,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[186,10,31,208,36,144,228,168,210,233,90,61,131,108,112,45,150,75,108,171,181,81,22,70]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[55,83,109,245,230,191,67,244,122,56,255,159,79,223,239,239,132,145,167,137,228,65,152,14,75,43,143,160,140,3,217,242]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,87,65,55,121,101,49,114,72,55,48,90,54,116,117,81,72,69,76,54,80,84,77,65,47,51,103,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,49,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,49,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,67,51,78,118,122,66,49,77,86,108,122,77,52,53,121,69,101,80,83,112,50,81,49,55,111,68,89,86,70,107,10,74,107,89,115,86,122,51,47,82,55,73,115,102,113,48,100,104,70,103,77,106,106,57,54,79,80,87,111,109,73,78,86,57,121,54,75,111,80,115,86,68,54,110,52,82,79,119,81,79,109,116,120,109,80,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,75,99,80,121,55,73,98,56,76,111,103,10,56,101,76,76,116,102,78,109,115,109,85,100,108,76,100,97,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,70,66,114,57,116,67,114,114,74,104,73,105,73,121,118,114,66,49,72,119,120,53,99,98,66,116,117,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,118,108,108,43,77,10,83,115,48,89,47,67,49,79,88,102,102,43,104,67,57,99,88,101,103,99,105,103,106,86,81,120,71,75,72,82,79,109,77,75,116,99,72,119,73,103,77,106,69,80,74,78,43,67,103,115,66,79,101,80,55,73,108,51,97,122,114,122,52,98,10,65,75,113,81,100,104,48,106,114,69,70,67,75,97,68,68,104,88,119,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,107,74,74,255,42,169,251,118,219,159,9,188,210,210,62,237,9,186,101,178,41,153,131,249,172,100,32,91,146,149,168,40,2,32,40,195,149,251,160,229,32,84,138,204,236,93,163,29,152,78,202,208,206,184,135,57,49,171,133,254,244,243,199,112,118,124]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,83,82,52,54,79,56,85,73,79,121,109,97,57,83,88,110,49,104,120,98,82,85,53,97,47,73,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,85,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,85,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,43,51,103,72,88,54,97,90,84,50,117,65,70,52,122,56,88,57,71,88,107,107,51,90,83,52,115,109,82,103,74,74,83,48,74,55,10,108,72,68,80,47,88,77,81,113,47,76,115,73,55,70,101,108,56,65,78,84,82,49,86,70,82,51,49,70,119,98,84,73,85,71,52,90,73,115,116,72,121,56,85,82,56,98,66,98,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,74,51,76,115,71,70,53,65,68,48,71,79,69,106,71,97,10,116,89,57,114,51,117,115,47,69,70,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,110,82,82,68,49,68,52,113,87,110,114,88,43,53,117,111,65,85,99,68,80,105,49,73,74,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,75,52,107,110,73,117,107,76,78,97,117,74,10,109,100,49,66,110,50,79,49,122,50,103,110,104,84,105,98,112,53,120,55,101,51,121,53,121,118,111,53,101,69,107,67,73,65,102,67,104,70,120,57,52,82,121,56,65,78,122,76,85,99,84,99,97,78,107,119,67,109,48,106,101,48,43,103,10,106,85,71,104,106,72,104,99,65,112,82,50,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,58,192,93,42,76,126,158,225,222,114,129,94,174,181,121,45,74,98,245,15,19,39,37,193,235,39,85,47,112,76,152,113,2,32,105,19,85,192,95,181,235,116,83,140,99,166,85,187,224,207,201,49,131,115,93,76,35,242,224,45,174,159,219,76,205,161]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('6f0599ab20e9f1a840af7249d86a9684a0f8ed8d8041ead49e14a116f0a329c8', '75,21,47,173,99,214,172,39,185,125,172,197,234,3,15,72,6,240,123,88,242,75,186,159,56,227,67,171,64,37,99,85', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,103,83,102,79,77,116,73,100,118,51,83,122,53,121,77,51,104,107,110,56,67,82,78,110,87,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,49,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,49,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,121,71,54,105,54,113,51,101,53,107,84,101,82,83,54,122,78,116,70,112,90,73,108,10,52,122,90,67,99,112,89,112,89,113,99,89,108,118,106,103,52,112,68,90,57,80,65,99,51,106,73,72,69,68,118,86,70,103,113,88,86,85,120,81,78,104,66,65,84,54,43,111,67,80,121,54,56,100,87,98,114,81,65,108,69,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,81,67,85,108,10,70,105,120,84,43,72,110,43,110,116,86,53,50,65,114,73,121,114,103,55,104,54,81,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,71,118,50,48,75,117,115,109,69,105,73,106,75,43,115,72,85,102,68,72,108,120,115,10,71,50,52,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,50,81,50,78,84,73,119,77,106,89,53,89,87,81,50,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,65,110,99,99,72,65,111,10,111,90,55,118,84,90,83,83,43,48,103,77,70,90,83,117,43,52,115,53,49,120,116,78,78,43,97,69,53,67,85,120,66,85,119,72,65,105,65,113,50,102,89,86,99,101,52,87,65,110,115,48,76,122,82,89,73,116,109,84,102,75,67,111,10,117,82,57,112,66,48,67,108,120,72,56,85,102,99,105,49,113,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[20,241,236,147,230,210,156,87,140,20,89,130,203,13,68,158,168,173,74,153,78,131,125,39]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[133,233,243,239,217,216,213,205,31,79,55,190,218,131,48,211,155,107,242,208,5,127,233,105,24,45,111,77,54,239,193,112]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,83,82,52,54,79,56,85,73,79,121,109,97,57,83,88,110,49,104,120,98,82,85,53,97,47,73,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,85,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,85,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,43,51,103,72,88,54,97,90,84,50,117,65,70,52,122,56,88,57,71,88,107,107,51,90,83,52,115,109,82,103,74,74,83,48,74,55,10,108,72,68,80,47,88,77,81,113,47,76,115,73,55,70,101,108,56,65,78,84,82,49,86,70,82,51,49,70,119,98,84,73,85,71,52,90,73,115,116,72,121,56,85,82,56,98,66,98,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,74,51,76,115,71,70,53,65,68,48,71,79,69,106,71,97,10,116,89,57,114,51,117,115,47,69,70,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,110,82,82,68,49,68,52,113,87,110,114,88,43,53,117,111,65,85,99,68,80,105,49,73,74,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,75,52,107,110,73,117,107,76,78,97,117,74,10,109,100,49,66,110,50,79,49,122,50,103,110,104,84,105,98,112,53,120,55,101,51,121,53,121,118,111,53,101,69,107,67,73,65,102,67,104,70,120,57,52,82,121,56,65,78,122,76,85,99,84,99,97,78,107,119,67,109,48,106,101,48,43,103,10,106,85,71,104,106,72,104,99,65,112,82,50,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,1,153,163,50,155,28,128,86,243,36,174,85,198,151,16,227,159,8,125,244,97,92,79,41,2,72,11,151,235,193,6,227,2,32,32,37,11,173,254,254,99,19,19,185,44,191,46,168,189,146,170,77,251,172,127,183,213,206,20,171,2,248,61,228,102,4]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,87,65,55,121,101,49,114,72,55,48,90,54,116,117,81,72,69,76,54,80,84,77,65,47,51,103,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,49,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,49,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,67,51,78,118,122,66,49,77,86,108,122,77,52,53,121,69,101,80,83,112,50,81,49,55,111,68,89,86,70,107,10,74,107,89,115,86,122,51,47,82,55,73,115,102,113,48,100,104,70,103,77,106,106,57,54,79,80,87,111,109,73,78,86,57,121,54,75,111,80,115,86,68,54,110,52,82,79,119,81,79,109,116,120,109,80,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,75,99,80,121,55,73,98,56,76,111,103,10,56,101,76,76,116,102,78,109,115,109,85,100,108,76,100,97,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,70,66,114,57,116,67,114,114,74,104,73,105,73,121,118,114,66,49,72,119,120,53,99,98,66,116,117,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,118,108,108,43,77,10,83,115,48,89,47,67,49,79,88,102,102,43,104,67,57,99,88,101,103,99,105,103,106,86,81,120,71,75,72,82,79,109,77,75,116,99,72,119,73,103,77,106,69,80,74,78,43,67,103,115,66,79,101,80,55,73,108,51,97,122,114,122,52,98,10,65,75,113,81,100,104,48,106,114,69,70,67,75,97,68,68,104,88,119,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,76,187,228,121,18,29,52,72,31,16,239,117,207,61,131,212,85,114,184,58,182,157,201,34,175,100,86,221,132,13,101,16,2,32,102,105,143,12,228,56,37,18,239,151,233,208,37,224,74,147,155,7,29,171,95,145,86,49,14,56,76,81,49,39,146,160]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('8efc8dc74b1402d04ffa9a29f33b49c9cfe7ea6a720dffd31f716edfc3341255', '253,116,251,61,44,102,208,229,87,47,86,191,43,232,32,224,254,160,2,13,42,69,162,153,20,126,45,170,137,228,113,17', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,103,83,102,79,77,116,73,100,118,51,83,122,53,121,77,51,104,107,110,56,67,82,78,110,87,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,49,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,49,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,121,71,54,105,54,113,51,101,53,107,84,101,82,83,54,122,78,116,70,112,90,73,108,10,52,122,90,67,99,112,89,112,89,113,99,89,108,118,106,103,52,112,68,90,57,80,65,99,51,106,73,72,69,68,118,86,70,103,113,88,86,85,120,81,78,104,66,65,84,54,43,111,67,80,121,54,56,100,87,98,114,81,65,108,69,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,81,67,85,108,10,70,105,120,84,43,72,110,43,110,116,86,53,50,65,114,73,121,114,103,55,104,54,81,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,71,118,50,48,75,117,115,109,69,105,73,106,75,43,115,72,85,102,68,72,108,120,115,10,71,50,52,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,50,81,50,78,84,73,119,77,106,89,53,89,87,81,50,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,65,110,99,99,72,65,111,10,111,90,55,118,84,90,83,83,43,48,103,77,70,90,83,117,43,52,115,53,49,120,116,78,78,43,97,69,53,67,85,120,66,85,119,72,65,105,65,113,50,102,89,86,99,101,52,87,65,110,115,48,76,122,82,89,73,116,109,84,102,75,67,111,10,117,82,57,112,66,48,67,108,120,72,56,85,102,99,105,49,113,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[88,185,168,35,173,224,233,217,228,116,205,78,65,235,105,88,174,192,66,104,89,206,250,189]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[203,116,82,179,59,43,113,31,174,151,161,215,89,194,209,131,187,97,104,25,188,103,240,86,18,36,19,103,208,250,99,205]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,87,65,55,121,101,49,114,72,55,48,90,54,116,117,81,72,69,76,54,80,84,77,65,47,51,103,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,49,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,49,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,67,51,78,118,122,66,49,77,86,108,122,77,52,53,121,69,101,80,83,112,50,81,49,55,111,68,89,86,70,107,10,74,107,89,115,86,122,51,47,82,55,73,115,102,113,48,100,104,70,103,77,106,106,57,54,79,80,87,111,109,73,78,86,57,121,54,75,111,80,115,86,68,54,110,52,82,79,119,81,79,109,116,120,109,80,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,75,99,80,121,55,73,98,56,76,111,103,10,56,101,76,76,116,102,78,109,115,109,85,100,108,76,100,97,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,70,66,114,57,116,67,114,114,74,104,73,105,73,121,118,114,66,49,72,119,120,53,99,98,66,116,117,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,118,108,108,43,77,10,83,115,48,89,47,67,49,79,88,102,102,43,104,67,57,99,88,101,103,99,105,103,106,86,81,120,71,75,72,82,79,109,77,75,116,99,72,119,73,103,77,106,69,80,74,78,43,67,103,115,66,79,101,80,55,73,108,51,97,122,114,122,52,98,10,65,75,113,81,100,104,48,106,114,69,70,67,75,97,68,68,104,88,119,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,167,110,185,37,118,61,21,247,176,145,124,33,165,50,83,95,116,38,220,14,30,55,72,17,222,132,121,137,89,104,200,85,2,32,92,132,83,142,228,188,62,165,107,159,141,225,39,240,49,19,155,138,13,112,52,111,89,205,102,21,212,198,52,27,0,31]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,83,82,52,54,79,56,85,73,79,121,109,97,57,83,88,110,49,104,120,98,82,85,53,97,47,73,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,85,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,85,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,43,51,103,72,88,54,97,90,84,50,117,65,70,52,122,56,88,57,71,88,107,107,51,90,83,52,115,109,82,103,74,74,83,48,74,55,10,108,72,68,80,47,88,77,81,113,47,76,115,73,55,70,101,108,56,65,78,84,82,49,86,70,82,51,49,70,119,98,84,73,85,71,52,90,73,115,116,72,121,56,85,82,56,98,66,98,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,74,51,76,115,71,70,53,65,68,48,71,79,69,106,71,97,10,116,89,57,114,51,117,115,47,69,70,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,110,82,82,68,49,68,52,113,87,110,114,88,43,53,117,111,65,85,99,68,80,105,49,73,74,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,75,52,107,110,73,117,107,76,78,97,117,74,10,109,100,49,66,110,50,79,49,122,50,103,110,104,84,105,98,112,53,120,55,101,51,121,53,121,118,111,53,101,69,107,67,73,65,102,67,104,70,120,57,52,82,121,56,65,78,122,76,85,99,84,99,97,78,107,119,67,109,48,106,101,48,43,103,10,106,85,71,104,106,72,104,99,65,112,82,50,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,78,47,232,218,47,180,160,119,150,220,225,224,93,175,197,56,93,216,34,29,138,12,221,181,65,67,72,132,55,230,18,224,2,32,50,129,93,24,152,23,131,216,102,36,25,255,165,61,147,63,68,230,222,135,219,232,91,71,69,19,29,218,139,7,243,64]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('4d7346fa6bd5bf0ca5d04aa277472d5c2f43d5ab5808111a9430f432dedbb8a9', '90,181,40,138,169,142,84,242,225,68,195,99,179,231,2,73,210,226,204,54,139,133,25,244,124,60,18,171,8,186,214,207', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,102,119,105,47,78,122,107,84,117,120,79,84,111,75,111,117,103,47,103,89,87,89,75,82,71,100,77,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,65,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,65,49,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,107,53,101,72,113,90,118,56,97,108,90,108,81,50,108,47,120,74,80,113,71,100,89,117,69,119,77,89,103,10,68,108,88,85,119,85,121,83,80,74,54,116,80,121,75,90,103,82,77,56,112,56,69,102,65,99,109,56,52,122,50,51,48,112,117,80,114,65,71,65,72,104,72,84,110,111,88,78,57,103,75,88,101,120,111,79,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,81,106,75,104,119,55,113,88,55,65,10,97,121,90,98,117,104,57,52,101,51,53,73,109,88,51,80,89,68,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,84,83,122,119,114,117,102,68,49,118,113,65,105,72,88,75,84,85,98,113,68,73,108,73,103,69,89,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,49,78,87,81,121,89,106,81,119,78,122,81,48,89,106,85,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,75,86,74,69,88,66,43,67,98,105,55,10,79,117,99,71,81,121,108,72,50,118,65,116,51,43,114,81,47,107,50,85,83,110,80,43,120,78,103,84,88,97,109,86,65,105,66,50,71,74,80,114,67,47,106,80,88,90,115,56,116,110,90,80,73,117,119,109,82,119,76,109,87,84,79,112,10,77,109,78,49,87,114,48,122,121,73,81,89,77,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[176,29,122,10,154,229,52,112,60,241,196,130,129,52,179,100,155,60,238,160,31,220,157,196]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[176,100,126,88,53,172,216,171,98,164,21,98,75,54,25,97,75,35,140,208,22,41,147,91,116,213,202,54,48,143,129,169]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,78,102,85,90,97,51,85,113,73,118,89,104,98,112,107,86,103,68,53,49,120,90,106,52,80,117,99,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,119,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,119,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,112,76,111,81,121,56,50,74,87,103,106,72,65,50,99,43,111,108,116,77,65,55,103,57,122,54,100,98,86,98,10,78,85,72,81,53,106,57,54,82,109,118,112,111,77,69,48,80,49,103,79,121,55,47,122,89,114,47,119,43,51,48,116,88,49,56,56,109,100,114,47,78,119,105,101,48,71,105,85,47,103,90,116,75,90,101,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,76,70,104,48,121,85,105,88,88,72,113,10,74,76,50,49,99,85,104,67,68,82,107,53,49,110,55,75,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,73,51,54,83,51,109,101,50,101,105,108,86,113,111,121,85,86,49,97,72,77,83,103,109,82,75,88,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,121,122,119,101,110,10,106,107,56,88,100,85,48,73,49,116,71,77,69,112,107,79,66,48,107,117,70,85,74,51,80,86,52,50,114,103,120,76,66,118,114,76,70,119,73,103,83,79,105,120,112,111,90,50,120,79,106,106,113,100,103,55,104,84,82,75,65,71,78,90,10,102,77,101,50,98,51,97,68,55,65,108,50,90,50,82,66,72,66,103,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,212,211,63,204,173,95,188,129,38,237,3,39,25,113,54,18,149,253,56,55,205,107,185,164,112,4,201,195,68,37,162,20,2,32,110,40,133,88,238,201,10,144,70,30,169,124,47,247,153,163,134,229,236,86,59,231,124,70,133,253,152,144,106,108,39,202]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,119,118,74,69,115,54,76,50,48,55,102,68,70,84,98,84,97,105,102,70,86,112,119,122,109,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,65,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,65,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,78,104,43,75,48,83,100,81,57,97,69,111,43,86,74,117,86,54,73,49,73,113,118,55,83,69,48,100,115,55,66,75,87,73,79,90,10,81,108,76,65,55,106,104,66,56,57,107,52,73,80,54,103,76,115,55,74,52,112,47,104,105,101,113,67,56,97,73,74,83,71,106,50,79,66,78,71,88,88,107,88,103,54,101,120,120,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,88,48,116,122,117,87,65,79,68,84,51,75,85,57,105,10,82,68,70,65,109,116,76,65,52,111,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,48,115,56,75,55,110,119,57,98,54,103,73,104,49,121,107,49,71,54,103,121,74,83,73,66,71,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,112,85,105,43,122,106,56,107,73,107,72,10,66,102,109,69,85,101,74,114,54,115,49,103,84,122,83,43,49,49,66,57,98,80,103,47,51,83,72,101,110,98,48,67,73,70,107,99,116,115,101,116,114,80,83,104,50,120,47,103,115,79,50,50,81,65,74,86,83,77,115,87,74,65,110,66,10,110,69,89,71,77,107,117,122,50,78,118,84,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,231,30,188,221,203,230,176,192,172,86,86,82,125,100,156,103,57,248,150,145,96,163,195,233,90,56,213,95,125,248,2,255,2,32,122,91,243,71,26,188,156,16,108,51,106,87,134,90,177,151,47,245,199,57,213,19,237,110,34,21,78,79,0,0,146,123]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('4e6282d1d537d8420e9d407a3d063fd82bbb447ffe9e11d335728eefa87c2a79', '177,102,216,90,5,150,45,77,111,206,167,226,123,157,71,177,6,255,65,133,228,196,208,65,124,143,28,39,229,89,96,37', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,84,121,57,74,68,103,84,107,52,83,97,66,43,103,79,52,78,51,113,49,98,110,75,75,67,115,77,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,119,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,119,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,74,98,72,67,51,102,43,100,102,48,108,82,65,105,53,88,114,109,65,82,104,55,89,106,10,119,71,72,81,100,101,97,117,100,106,107,122,71,51,85,119,89,108,57,76,120,49,85,100,99,115,106,119,49,48,74,55,116,100,73,121,73,110,111,67,72,76,49,120,43,54,53,104,98,114,57,102,47,70,43,80,86,70,77,82,105,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,65,116,107,76,10,85,90,76,118,112,82,53,88,71,84,114,65,111,89,74,54,98,69,90,83,121,54,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,106,102,112,76,101,90,55,90,54,75,86,87,113,106,74,82,88,86,111,99,120,75,67,90,10,69,112,99,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,84,86,107,77,109,73,48,77,68,99,48,78,71,73,49,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,67,43,84,100,119,98,48,10,65,71,90,108,43,121,119,90,90,80,112,85,50,70,87,51,99,99,70,116,105,86,68,87,113,82,111,51,52,117,105,56,88,121,98,54,65,105,65,121,88,47,112,98,90,86,116,73,89,101,108,103,43,71,54,102,56,47,48,71,68,70,57,80,10,86,111,107,75,73,114,74,118,113,79,76,57,87,86,122,76,83,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[169,94,176,186,75,230,45,209,139,45,91,227,112,125,162,33,171,136,229,8,150,114,49,222]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[133,126,160,174,134,248,205,156,118,176,239,170,111,195,76,210,5,156,61,157,96,168,104,237,3,97,18,159,152,255,16,40]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,119,118,74,69,115,54,76,50,48,55,102,68,70,84,98,84,97,105,102,70,86,112,119,122,109,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,65,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,65,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,78,104,43,75,48,83,100,81,57,97,69,111,43,86,74,117,86,54,73,49,73,113,118,55,83,69,48,100,115,55,66,75,87,73,79,90,10,81,108,76,65,55,106,104,66,56,57,107,52,73,80,54,103,76,115,55,74,52,112,47,104,105,101,113,67,56,97,73,74,83,71,106,50,79,66,78,71,88,88,107,88,103,54,101,120,120,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,88,48,116,122,117,87,65,79,68,84,51,75,85,57,105,10,82,68,70,65,109,116,76,65,52,111,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,48,115,56,75,55,110,119,57,98,54,103,73,104,49,121,107,49,71,54,103,121,74,83,73,66,71,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,112,85,105,43,122,106,56,107,73,107,72,10,66,102,109,69,85,101,74,114,54,115,49,103,84,122,83,43,49,49,66,57,98,80,103,47,51,83,72,101,110,98,48,67,73,70,107,99,116,115,101,116,114,80,83,104,50,120,47,103,115,79,50,50,81,65,74,86,83,77,115,87,74,65,110,66,10,110,69,89,71,77,107,117,122,50,78,118,84,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,245,105,21,48,74,155,51,251,221,236,211,235,90,130,78,71,1,8,179,207,146,150,148,118,42,210,55,21,115,141,5,50,2,32,22,103,52,135,145,48,12,238,118,84,208,177,8,185,241,122,120,35,72,184,86,87,91,68,179,14,131,102,154,117,170,8]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,78,102,85,90,97,51,85,113,73,118,89,104,98,112,107,86,103,68,53,49,120,90,106,52,80,117,99,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,119,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,119,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,112,76,111,81,121,56,50,74,87,103,106,72,65,50,99,43,111,108,116,77,65,55,103,57,122,54,100,98,86,98,10,78,85,72,81,53,106,57,54,82,109,118,112,111,77,69,48,80,49,103,79,121,55,47,122,89,114,47,119,43,51,48,116,88,49,56,56,109,100,114,47,78,119,105,101,48,71,105,85,47,103,90,116,75,90,101,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,76,70,104,48,121,85,105,88,88,72,113,10,74,76,50,49,99,85,104,67,68,82,107,53,49,110,55,75,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,73,51,54,83,51,109,101,50,101,105,108,86,113,111,121,85,86,49,97,72,77,83,103,109,82,75,88,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,121,122,119,101,110,10,106,107,56,88,100,85,48,73,49,116,71,77,69,112,107,79,66,48,107,117,70,85,74,51,80,86,52,50,114,103,120,76,66,118,114,76,70,119,73,103,83,79,105,120,112,111,90,50,120,79,106,106,113,100,103,55,104,84,82,75,65,71,78,90,10,102,77,101,50,98,51,97,68,55,65,108,50,90,50,82,66,72,66,103,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,141,91,189,118,43,158,49,248,60,127,127,195,26,135,193,75,161,252,175,238,115,94,174,28,79,167,167,219,97,239,62,125,2,32,82,64,31,113,200,255,249,200,234,50,46,122,213,115,16,234,236,24,81,96,219,59,14,210,100,216,32,150,196,216,218,154]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('eb2ed2bcf203956f71e56b63cb46ab00d73c9865bb45f08301caed875b16e93d', '106,19,185,31,156,15,184,90,20,40,233,86,86,23,72,255,101,30,95,154,198,226,55,108,227,31,37,38,181,44,229,105', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,84,121,57,74,68,103,84,107,52,83,97,66,43,103,79,52,78,51,113,49,98,110,75,75,67,115,77,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,119,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,119,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,74,98,72,67,51,102,43,100,102,48,108,82,65,105,53,88,114,109,65,82,104,55,89,106,10,119,71,72,81,100,101,97,117,100,106,107,122,71,51,85,119,89,108,57,76,120,49,85,100,99,115,106,119,49,48,74,55,116,100,73,121,73,110,111,67,72,76,49,120,43,54,53,104,98,114,57,102,47,70,43,80,86,70,77,82,105,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,65,116,107,76,10,85,90,76,118,112,82,53,88,71,84,114,65,111,89,74,54,98,69,90,83,121,54,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,106,102,112,76,101,90,55,90,54,75,86,87,113,106,74,82,88,86,111,99,120,75,67,90,10,69,112,99,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,84,86,107,77,109,73,48,77,68,99,48,78,71,73,49,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,67,43,84,100,119,98,48,10,65,71,90,108,43,121,119,90,90,80,112,85,50,70,87,51,99,99,70,116,105,86,68,87,113,82,111,51,52,117,105,56,88,121,98,54,65,105,65,121,88,47,112,98,90,86,116,73,89,101,108,103,43,71,54,102,56,47,48,71,68,70,57,80,10,86,111,107,75,73,114,74,118,113,79,76,57,87,86,122,76,83,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[218,195,223,176,57,205,140,156,172,154,75,27,99,177,112,53,7,88,16,163,233,253,246,203]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[7,128,110,94,145,187,186,235,201,241,131,161,68,37,96,231,39,114,6,229,159,20,171,81,96,42,206,185,16,161,206,212]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,119,118,74,69,115,54,76,50,48,55,102,68,70,84,98,84,97,105,102,70,86,112,119,122,109,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,65,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,65,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,78,104,43,75,48,83,100,81,57,97,69,111,43,86,74,117,86,54,73,49,73,113,118,55,83,69,48,100,115,55,66,75,87,73,79,90,10,81,108,76,65,55,106,104,66,56,57,107,52,73,80,54,103,76,115,55,74,52,112,47,104,105,101,113,67,56,97,73,74,83,71,106,50,79,66,78,71,88,88,107,88,103,54,101,120,120,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,88,48,116,122,117,87,65,79,68,84,51,75,85,57,105,10,82,68,70,65,109,116,76,65,52,111,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,48,115,56,75,55,110,119,57,98,54,103,73,104,49,121,107,49,71,54,103,121,74,83,73,66,71,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,112,85,105,43,122,106,56,107,73,107,72,10,66,102,109,69,85,101,74,114,54,115,49,103,84,122,83,43,49,49,66,57,98,80,103,47,51,83,72,101,110,98,48,67,73,70,107,99,116,115,101,116,114,80,83,104,50,120,47,103,115,79,50,50,81,65,74,86,83,77,115,87,74,65,110,66,10,110,69,89,71,77,107,117,122,50,78,118,84,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,178,22,34,26,148,198,48,218,245,181,49,35,3,66,75,59,13,241,159,221,229,21,111,116,9,130,75,74,44,48,21,133,2,32,66,42,29,142,7,248,185,172,210,18,74,157,192,147,26,212,20,65,83,116,128,178,114,14,214,192,91,200,91,141,37,65]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,78,102,85,90,97,51,85,113,73,118,89,104,98,112,107,86,103,68,53,49,120,90,106,52,80,117,99,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,119,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,119,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,112,76,111,81,121,56,50,74,87,103,106,72,65,50,99,43,111,108,116,77,65,55,103,57,122,54,100,98,86,98,10,78,85,72,81,53,106,57,54,82,109,118,112,111,77,69,48,80,49,103,79,121,55,47,122,89,114,47,119,43,51,48,116,88,49,56,56,109,100,114,47,78,119,105,101,48,71,105,85,47,103,90,116,75,90,101,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,76,70,104,48,121,85,105,88,88,72,113,10,74,76,50,49,99,85,104,67,68,82,107,53,49,110,55,75,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,73,51,54,83,51,109,101,50,101,105,108,86,113,111,121,85,86,49,97,72,77,83,103,109,82,75,88,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,121,122,119,101,110,10,106,107,56,88,100,85,48,73,49,116,71,77,69,112,107,79,66,48,107,117,70,85,74,51,80,86,52,50,114,103,120,76,66,118,114,76,70,119,73,103,83,79,105,120,112,111,90,50,120,79,106,106,113,100,103,55,104,84,82,75,65,71,78,90,10,102,77,101,50,98,51,97,68,55,65,108,50,90,50,82,66,72,66,103,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,168,164,183,222,238,244,47,194,108,231,147,24,239,163,3,29,150,2,244,239,198,85,155,3,127,221,69,254,64,120,37,96,2,32,100,219,158,201,202,81,41,198,95,214,87,246,243,1,5,206,29,144,175,214,239,63,38,11,134,223,57,14,99,238,150,218]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('f72813f4ee593d706b67fa549c8f9e1fb85e52476e89bf80208b19ee558ff34f', '232,76,91,45,159,117,241,190,186,73,172,229,24,129,30,8,124,254,173,238,189,160,24,131,62,116,195,243,73,77,61,198', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,85,107,47,53,55,115,77,52,111,68,120,89,52,103,78,116,105,71,106,102,86,56,54,67,78,118,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,77,122,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,77,52,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,84,120,78,117,76,66,114,68,106,114,106,121,103,47,102,104,51,70,83,106,85,102,72,50,48,52,122,80,68,85,10,69,103,84,72,107,57,68,112,90,90,88,83,103,120,82,116,78,50,88,88,78,121,112,78,72,50,70,98,120,119,71,102,115,114,86,76,97,100,90,121,49,103,113,65,111,106,43,87,82,66,88,120,98,99,85,105,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,69,83,72,47,119,87,66,48,109,10,78,89,49,85,47,122,65,120,51,65,89,103,55,119,104,52,121,68,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,81,82,113,117,67,69,84,79,102,66,89,83,52,103,78,71,65,87,73,83,106,101,75,84,56,121,104,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,120,105,77,122,85,49,89,122,70,105,78,84,89,121,78,122,69,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,87,69,106,49,112,83,86,121,53,107,72,67,10,100,55,107,65,83,98,83,50,110,103,88,53,50,51,54,122,73,69,105,83,47,85,51,108,50,86,81,107,87,77,111,67,73,67,69,75,103,65,57,90,49,111,109,90,48,102,51,88,104,65,119,111,72,97,102,118,119,74,108,88,118,83,56,112,10,66,69,65,54,119,48,116,66,78,86,121,117,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[144,79,96,176,2,78,87,210,176,95,105,218,169,21,127,44,151,107,103,24,99,176,156,158]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[180,96,149,100,67,244,151,251,117,90,97,4,20,12,219,178,15,106,67,109,107,115,226,227,182,88,67,132,220,65,234,13]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,77,81,114,48,121,70,72,79,55,71,122,80,116,111,101,116,104,79,71,54,73,78,103,103,118,51,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,122,77,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,122,79,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,69,75,65,86,118,53,88,114,111,81,69,90,89,65,119,65,105,78,78,54,78,47,69,79,76,111,65,97,107,10,65,52,86,56,98,87,98,119,67,114,48,115,84,87,43,55,87,51,70,114,116,88,88,103,78,43,112,67,71,54,119,69,84,73,68,77,111,57,76,101,84,43,85,53,56,106,97,54,80,72,56,53,98,75,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,110,77,82,108,85,103,101,100,48,84,10,114,85,105,98,89,118,118,49,88,99,111,81,100,57,110,79,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,107,86,56,83,102,76,101,118,83,73,51,113,121,74,118,66,75,105,117,107,71,88,106,52,99,105,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,121,47,69,48,83,67,10,98,79,104,80,113,97,69,68,87,103,98,52,108,89,119,108,100,121,102,101,86,74,52,97,69,120,74,121,111,47,50,71,107,73,110,75,65,105,65,48,113,77,117,56,111,105,119,53,76,53,66,43,80,69,106,82,87,57,81,88,117,89,66,120,10,82,97,97,68,88,103,72,52,110,76,87,55,110,65,68,68,72,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,173,86,147,221,13,145,115,122,126,18,134,208,59,148,238,194,250,249,169,66,140,107,34,216,47,47,143,222,155,202,101,250,2,32,87,216,47,203,227,200,42,197,242,71,18,76,184,197,137,241,94,198,181,205,225,232,50,72,16,42,223,152,133,82,169,181]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,72,102,75,99,109,73,78,73,89,52,66,110,100,115,78,78,115,51,102,104,74,72,48,121,43,117,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,77,122,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,77,52,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,105,47,53,52,51,83,67,71,72,73,110,100,67,57,66,97,67,102,115,49,70,82,81,49,117,53,115,52,122,105,97,48,102,43,109,110,10,100,69,54,70,77,109,79,69,109,81,49,107,89,115,102,86,114,78,90,97,102,120,88,86,80,74,106,111,83,66,79,57,116,122,108,109,84,86,112,81,109,70,85,69,53,82,101,100,83,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,53,86,81,118,103,106,43,77,47,110,65,43,51,110,50,84,10,82,109,82,78,68,109,116,67,109,122,115,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,69,97,114,103,104,69,122,110,119,87,69,117,73,68,82,103,70,105,69,111,51,105,107,47,77,111,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,73,69,72,117,87,68,69,71,55,81,75,57,10,119,90,49,55,110,54,110,76,111,90,109,100,67,81,85,109,72,103,119,54,110,53,114,114,106,66,119,56,89,116,69,67,73,67,121,90,101,101,108,115,69,116,53,66,118,104,72,66,79,103,99,55,67,52,80,89,78,65,114,70,107,108,84,97,10,57,87,82,69,110,86,81,48,48,117,122,43,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,194,99,185,209,58,122,151,40,204,166,254,196,153,114,87,37,23,164,88,55,247,152,183,110,133,233,61,82,239,30,123,20,2,32,83,243,248,205,43,90,222,39,17,142,180,203,44,209,30,248,9,111,13,73,254,151,221,2,56,161,227,45,120,80,211,71]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('e52348d2a80ff1b7e26dd2dd6c83a965dea83e95e83246531ccd5be48c956dbe', '130,150,28,104,60,222,226,46,255,143,99,146,95,60,22,153,244,174,55,237,197,189,249,190,231,182,242,86,120,109,27,186', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,88,104,118,110,85,102,79,120,70,90,76,48,83,107,72,82,77,65,43,108,122,57,43,107,69,79,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,122,77,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,122,79,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,73,81,112,52,103,51,73,110,66,50,113,98,72,111,88,69,75,117,43,49,88,55,101,104,10,83,100,50,49,56,74,51,52,80,103,82,70,68,51,56,115,56,74,120,109,112,55,47,77,119,87,80,104,117,120,110,114,81,106,69,72,98,102,109,73,57,116,55,113,84,72,98,74,101,111,99,51,68,47,122,66,118,116,103,84,119,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,72,71,68,119,10,47,119,85,86,122,120,48,78,80,112,80,114,100,110,69,50,81,86,122,65,56,118,115,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,97,82,88,120,74,56,116,54,57,73,106,101,114,73,109,56,69,113,75,54,81,90,101,80,10,104,121,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,89,106,77,49,78,87,77,120,89,106,85,50,77,106,99,120,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,117,81,51,56,48,10,73,76,87,49,49,55,70,73,52,73,52,110,117,86,115,87,80,53,120,49,120,78,67,102,71,71,87,48,57,119,113,52,73,43,118,122,79,119,73,103,70,119,75,119,118,74,57,86,89,52,47,115,57,102,81,78,72,57,85,48,88,68,97,76,10,43,109,102,88,77,109,73,105,114,84,80,79,108,97,78,90,53,76,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[243,184,201,122,28,23,26,146,91,139,129,128,205,28,231,228,250,20,49,101,204,74,95,230]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[234,24,92,20,26,94,77,84,13,34,152,153,29,198,157,220,131,167,64,4,59,223,8,99,139,178,45,254,142,220,102,231]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,77,81,114,48,121,70,72,79,55,71,122,80,116,111,101,116,104,79,71,54,73,78,103,103,118,51,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,122,77,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,122,79,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,69,75,65,86,118,53,88,114,111,81,69,90,89,65,119,65,105,78,78,54,78,47,69,79,76,111,65,97,107,10,65,52,86,56,98,87,98,119,67,114,48,115,84,87,43,55,87,51,70,114,116,88,88,103,78,43,112,67,71,54,119,69,84,73,68,77,111,57,76,101,84,43,85,53,56,106,97,54,80,72,56,53,98,75,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,110,77,82,108,85,103,101,100,48,84,10,114,85,105,98,89,118,118,49,88,99,111,81,100,57,110,79,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,107,86,56,83,102,76,101,118,83,73,51,113,121,74,118,66,75,105,117,107,71,88,106,52,99,105,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,121,47,69,48,83,67,10,98,79,104,80,113,97,69,68,87,103,98,52,108,89,119,108,100,121,102,101,86,74,52,97,69,120,74,121,111,47,50,71,107,73,110,75,65,105,65,48,113,77,117,56,111,105,119,53,76,53,66,43,80,69,106,82,87,57,81,88,117,89,66,120,10,82,97,97,68,88,103,72,52,110,76,87,55,110,65,68,68,72,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,110,109,231,152,155,167,55,202,141,158,61,150,14,217,87,120,159,36,13,203,192,126,239,11,223,130,162,15,238,243,255,102,2,32,75,8,202,215,15,187,190,15,0,81,241,152,108,210,95,181,226,179,96,87,213,93,84,188,184,185,52,93,196,237,120,244]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,72,102,75,99,109,73,78,73,89,52,66,110,100,115,78,78,115,51,102,104,74,72,48,121,43,117,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,77,122,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,77,52,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,105,47,53,52,51,83,67,71,72,73,110,100,67,57,66,97,67,102,115,49,70,82,81,49,117,53,115,52,122,105,97,48,102,43,109,110,10,100,69,54,70,77,109,79,69,109,81,49,107,89,115,102,86,114,78,90,97,102,120,88,86,80,74,106,111,83,66,79,57,116,122,108,109,84,86,112,81,109,70,85,69,53,82,101,100,83,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,53,86,81,118,103,106,43,77,47,110,65,43,51,110,50,84,10,82,109,82,78,68,109,116,67,109,122,115,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,69,97,114,103,104,69,122,110,119,87,69,117,73,68,82,103,70,105,69,111,51,105,107,47,77,111,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,73,69,72,117,87,68,69,71,55,81,75,57,10,119,90,49,55,110,54,110,76,111,90,109,100,67,81,85,109,72,103,119,54,110,53,114,114,106,66,119,56,89,116,69,67,73,67,121,90,101,101,108,115,69,116,53,66,118,104,72,66,79,103,99,55,67,52,80,89,78,65,114,70,107,108,84,97,10,57,87,82,69,110,86,81,48,48,117,122,43,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,204,94,194,83,46,217,22,210,230,192,6,231,47,84,37,221,130,149,209,232,0,123,40,111,103,214,239,206,148,49,227,28,2,32,116,254,255,152,199,171,115,162,39,44,14,25,83,148,4,146,32,43,24,150,53,98,255,38,191,38,163,231,166,211,129,153]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('4d38f2c49d156a5d78caf79b87a5abaf21b53c189fa66a9ddfc9535015b0c584', '51,71,223,226,162,23,53,18,24,33,145,204,101,3,143,114,9,190,113,66,1,211,163,149,81,127,95,143,194,246,74,232', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,88,104,118,110,85,102,79,120,70,90,76,48,83,107,72,82,77,65,43,108,122,57,43,107,69,79,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,122,77,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,122,79,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,73,81,112,52,103,51,73,110,66,50,113,98,72,111,88,69,75,117,43,49,88,55,101,104,10,83,100,50,49,56,74,51,52,80,103,82,70,68,51,56,115,56,74,120,109,112,55,47,77,119,87,80,104,117,120,110,114,81,106,69,72,98,102,109,73,57,116,55,113,84,72,98,74,101,111,99,51,68,47,122,66,118,116,103,84,119,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,72,71,68,119,10,47,119,85,86,122,120,48,78,80,112,80,114,100,110,69,50,81,86,122,65,56,118,115,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,97,82,88,120,74,56,116,54,57,73,106,101,114,73,109,56,69,113,75,54,81,90,101,80,10,104,121,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,89,106,77,49,78,87,77,120,89,106,85,50,77,106,99,120,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,117,81,51,56,48,10,73,76,87,49,49,55,70,73,52,73,52,110,117,86,115,87,80,53,120,49,120,78,67,102,71,71,87,48,57,119,113,52,73,43,118,122,79,119,73,103,70,119,75,119,118,74,57,86,89,52,47,115,57,102,81,78,72,57,85,48,88,68,97,76,10,43,109,102,88,77,109,73,105,114,84,80,79,108,97,78,90,53,76,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[194,87,117,111,207,101,149,70,129,241,122,61,81,53,201,141,240,111,63,108,61,81,162,23]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[251,134,192,172,17,160,47,62,194,231,201,29,245,205,128,29,119,229,95,14,64,96,254,84,10,229,10,85,91,76,224,129]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,77,81,114,48,121,70,72,79,55,71,122,80,116,111,101,116,104,79,71,54,73,78,103,103,118,51,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,122,77,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,122,79,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,69,75,65,86,118,53,88,114,111,81,69,90,89,65,119,65,105,78,78,54,78,47,69,79,76,111,65,97,107,10,65,52,86,56,98,87,98,119,67,114,48,115,84,87,43,55,87,51,70,114,116,88,88,103,78,43,112,67,71,54,119,69,84,73,68,77,111,57,76,101,84,43,85,53,56,106,97,54,80,72,56,53,98,75,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,110,77,82,108,85,103,101,100,48,84,10,114,85,105,98,89,118,118,49,88,99,111,81,100,57,110,79,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,107,86,56,83,102,76,101,118,83,73,51,113,121,74,118,66,75,105,117,107,71,88,106,52,99,105,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,121,47,69,48,83,67,10,98,79,104,80,113,97,69,68,87,103,98,52,108,89,119,108,100,121,102,101,86,74,52,97,69,120,74,121,111,47,50,71,107,73,110,75,65,105,65,48,113,77,117,56,111,105,119,53,76,53,66,43,80,69,106,82,87,57,81,88,117,89,66,120,10,82,97,97,68,88,103,72,52,110,76,87,55,110,65,68,68,72,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,131,89,226,139,108,253,62,124,248,28,246,210,33,23,2,106,165,197,89,154,244,152,0,106,76,37,192,10,206,62,167,154,2,32,126,160,108,167,82,186,241,96,152,86,6,175,223,80,148,217,143,244,67,194,253,142,38,44,46,140,7,96,245,23,81,132]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,72,102,75,99,109,73,78,73,89,52,66,110,100,115,78,78,115,51,102,104,74,72,48,121,43,117,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,77,122,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,77,52,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,105,47,53,52,51,83,67,71,72,73,110,100,67,57,66,97,67,102,115,49,70,82,81,49,117,53,115,52,122,105,97,48,102,43,109,110,10,100,69,54,70,77,109,79,69,109,81,49,107,89,115,102,86,114,78,90,97,102,120,88,86,80,74,106,111,83,66,79,57,116,122,108,109,84,86,112,81,109,70,85,69,53,82,101,100,83,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,53,86,81,118,103,106,43,77,47,110,65,43,51,110,50,84,10,82,109,82,78,68,109,116,67,109,122,115,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,69,97,114,103,104,69,122,110,119,87,69,117,73,68,82,103,70,105,69,111,51,105,107,47,77,111,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,73,69,72,117,87,68,69,71,55,81,75,57,10,119,90,49,55,110,54,110,76,111,90,109,100,67,81,85,109,72,103,119,54,110,53,114,114,106,66,119,56,89,116,69,67,73,67,121,90,101,101,108,115,69,116,53,66,118,104,72,66,79,103,99,55,67,52,80,89,78,65,114,70,107,108,84,97,10,57,87,82,69,110,86,81,48,48,117,122,43,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,95,116,165,141,220,16,41,54,185,216,7,189,241,200,208,26,149,207,232,137,187,200,1,148,92,57,175,48,128,144,50,10,2,32,91,21,208,23,235,229,241,127,54,222,243,222,91,60,175,209,24,203,126,136,118,105,172,137,151,116,217,74,161,44,130,97]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('7d0292f05e3f587157b38b88b8177476e41e5f25e41037a5911cd5e744a2947f', '46,107,66,29,142,252,196,0,169,213,91,229,223,223,107,185,44,118,61,117,224,75,213,79,87,186,241,119,21,168,108,250', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,87,89,110,76,51,108,105,53,77,54,104,122,75,69,108,113,82,100,53,116,68,78,77,74,122,117,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,81,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,85,119,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,84,87,101,48,120,65,65,72,56,88,101,77,80,77,86,67,110,98,76,106,68,55,101,113,117,100,98,65,76,85,10,116,122,121,66,67,103,107,111,69,79,105,47,57,87,69,89,117,108,77,116,98,69,105,65,84,47,76,89,48,54,49,81,73,107,68,120,47,97,82,51,78,48,120,108,104,52,105,73,100,81,113,76,117,88,99,70,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,81,120,88,82,113,75,109,117,52,69,10,85,49,117,80,100,89,57,121,120,54,55,72,47,51,55,105,87,84,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,83,98,75,49,50,118,73,53,65,110,71,85,83,122,76,108,111,87,97,116,72,53,90,75,98,90,107,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,121,90,68,107,51,77,106,104,109,90,71,85,119,78,84,73,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,73,106,103,117,85,86,53,81,73,111,90,10,112,108,81,57,78,53,110,65,79,110,70,49,85,105,48,87,89,118,108,79,76,57,83,85,77,65,66,76,111,90,120,86,65,105,66,57,79,102,117,85,68,88,54,120,119,88,122,79,51,121,53,98,90,53,111,83,73,114,112,76,121,115,102,78,10,115,43,53,106,122,117,75,56,100,112,90,111,70,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[208,215,163,24,65,116,145,133,84,34,79,148,92,190,237,94,71,38,181,55,193,178,219,76]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[180,122,53,4,53,203,154,30,14,45,232,252,137,153,52,166,159,143,145,40,143,80,155,187,40,6,251,49,17,10,58,101]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,70,72,120,109,47,118,56,80,71,48,80,108,101,85,87,72,97,84,106,90,100,79,83,112,76,75,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,48,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,49,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,88,78,86,110,109,105,113,120,101,84,73,54,71,89,102,52,47,102,111,99,73,110,57,76,114,101,121,81,122,76,10,43,111,73,90,101,88,69,75,107,88,111,118,106,77,54,83,97,100,122,113,71,116,71,70,80,108,52,101,53,47,56,89,85,82,101,87,70,103,55,76,71,110,88,72,110,100,101,98,51,113,56,57,73,65,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,51,51,100,47,97,118,85,67,108,67,10,50,102,70,87,98,118,112,80,76,53,83,114,111,72,65,89,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,86,77,54,67,68,112,101,103,103,112,83,65,50,103,76,108,103,117,117,111,107,72,82,87,106,118,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,101,47,80,111,104,51,10,79,57,97,106,103,86,80,47,56,97,116,73,98,67,78,103,87,112,106,104,68,48,54,81,122,76,75,70,112,101,79,71,118,110,70,74,65,105,65,103,110,104,67,50,109,57,88,121,67,89,56,88,49,106,52,99,86,97,119,80,118,118,56,71,10,67,77,83,70,120,101,66,102,103,43,122,52,47,102,101,116,72,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,90,247,255,99,237,135,190,212,236,243,210,210,63,96,127,82,8,196,107,56,79,135,171,37,79,122,109,214,81,67,117,35,2,32,119,178,69,171,57,238,30,164,0,16,183,211,68,94,169,156,194,111,195,42,2,207,28,157,61,150,160,17,249,44,122,77]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,66,101,80,109,89,104,115,72,118,75,122,53,113,84,104,73,71,121,52,53,72,107,83,115,78,87,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,81,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,85,119,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,119,57,43,89,120,98,51,80,49,97,68,51,112,118,86,103,89,67,57,120,87,88,118,116,48,109,111,115,88,90,76,103,70,83,101,115,10,121,67,119,80,57,102,79,55,50,76,109,80,66,117,66,119,105,55,67,90,48,106,70,49,73,48,117,57,107,104,102,76,87,51,48,65,85,70,68,77,77,86,88,75,117,120,120,50,57,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,43,115,107,86,112,43,89,102,50,97,105,71,82,73,122,56,10,66,67,66,66,55,116,111,67,55,105,81,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,109,121,116,100,114,121,79,81,74,120,108,69,115,121,53,97,70,109,114,82,43,87,83,109,50,90,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,101,53,106,106,112,81,111,90,51,85,68,84,10,53,52,52,120,104,57,122,88,80,119,97,88,73,48,111,79,105,54,113,103,87,69,113,52,69,79,89,88,110,51,77,67,73,67,81,77,70,78,73,53,106,104,107,48,81,87,81,47,68,87,47,74,55,115,43,72,90,85,73,120,117,90,122,55,10,115,118,108,111,68,84,99,115,122,71,74,88,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,205,161,51,90,121,69,200,154,51,69,91,138,69,29,92,56,204,24,222,36,30,77,224,185,58,183,164,43,151,183,254,142,2,32,45,104,179,208,71,16,242,228,136,9,121,147,26,192,199,113,173,73,160,2,115,253,201,230,16,81,147,192,53,46,241,85]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('f20a77f32c34a80af8ad481ce1430981e7259bf68b8e6d2dc31bfe84cf55cdcc', '113,208,146,38,132,158,93,4,12,180,18,66,12,157,234,226,164,204,180,211,149,223,233,196,77,151,106,169,22,228,192,185', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,90,47,85,89,83,77,101,76,68,52,75,71,65,112,113,69,51,76,74,67,107,117,122,113,109,54,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,48,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,49,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,87,71,68,90,104,79,76,70,98,84,103,65,47,121,118,117,74,98,84,82,54,74,99,108,10,89,112,85,111,111,74,120,66,47,72,113,116,70,97,104,43,68,101,120,47,79,122,115,70,74,116,66,108,105,105,70,97,102,85,109,89,85,113,86,68,120,71,84,103,121,111,72,116,74,49,82,48,103,73,120,54,90,105,72,68,47,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,77,56,77,87,10,69,100,74,79,115,113,48,112,71,43,77,113,115,57,107,67,76,76,107,72,49,107,107,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,57,85,122,111,73,79,108,54,67,67,108,73,68,97,65,117,87,67,54,54,105,81,100,70,10,97,79,56,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,109,81,53,78,122,73,52,90,109,82,108,77,68,85,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,117,89,79,71,85,10,83,119,70,110,56,70,99,55,112,70,116,78,51,110,57,113,67,48,121,67,113,55,99,110,78,114,50,77,103,83,65,90,114,82,71,75,99,81,73,103,70,88,51,83,47,103,113,84,43,52,86,54,114,66,52,111,89,77,65,111,109,69,118,66,10,109,57,65,117,83,48,107,76,104,50,52,85,121,89,71,116,107,88,103,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[187,69,107,53,207,151,147,255,70,105,166,158,27,29,151,211,33,162,3,58,242,141,76,113]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[24,27,18,170,1,163,60,123,189,110,61,60,252,215,84,149,209,109,62,71,233,210,28,139,241,229,106,175,85,211,23,17]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,66,101,80,109,89,104,115,72,118,75,122,53,113,84,104,73,71,121,52,53,72,107,83,115,78,87,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,81,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,85,119,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,119,57,43,89,120,98,51,80,49,97,68,51,112,118,86,103,89,67,57,120,87,88,118,116,48,109,111,115,88,90,76,103,70,83,101,115,10,121,67,119,80,57,102,79,55,50,76,109,80,66,117,66,119,105,55,67,90,48,106,70,49,73,48,117,57,107,104,102,76,87,51,48,65,85,70,68,77,77,86,88,75,117,120,120,50,57,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,43,115,107,86,112,43,89,102,50,97,105,71,82,73,122,56,10,66,67,66,66,55,116,111,67,55,105,81,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,109,121,116,100,114,121,79,81,74,120,108,69,115,121,53,97,70,109,114,82,43,87,83,109,50,90,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,101,53,106,106,112,81,111,90,51,85,68,84,10,53,52,52,120,104,57,122,88,80,119,97,88,73,48,111,79,105,54,113,103,87,69,113,52,69,79,89,88,110,51,77,67,73,67,81,77,70,78,73,53,106,104,107,48,81,87,81,47,68,87,47,74,55,115,43,72,90,85,73,120,117,90,122,55,10,115,118,108,111,68,84,99,115,122,71,74,88,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,180,103,215,31,22,144,180,169,241,43,176,59,169,134,145,99,164,100,187,247,17,211,198,184,43,54,53,157,248,163,248,193,2,32,61,32,136,145,82,238,61,224,244,215,7,189,80,122,156,232,14,23,168,240,178,247,200,203,87,38,11,182,208,122,129,92]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,70,72,120,109,47,118,56,80,71,48,80,108,101,85,87,72,97,84,106,90,100,79,83,112,76,75,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,48,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,49,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,88,78,86,110,109,105,113,120,101,84,73,54,71,89,102,52,47,102,111,99,73,110,57,76,114,101,121,81,122,76,10,43,111,73,90,101,88,69,75,107,88,111,118,106,77,54,83,97,100,122,113,71,116,71,70,80,108,52,101,53,47,56,89,85,82,101,87,70,103,55,76,71,110,88,72,110,100,101,98,51,113,56,57,73,65,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,51,51,100,47,97,118,85,67,108,67,10,50,102,70,87,98,118,112,80,76,53,83,114,111,72,65,89,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,86,77,54,67,68,112,101,103,103,112,83,65,50,103,76,108,103,117,117,111,107,72,82,87,106,118,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,101,47,80,111,104,51,10,79,57,97,106,103,86,80,47,56,97,116,73,98,67,78,103,87,112,106,104,68,48,54,81,122,76,75,70,112,101,79,71,118,110,70,74,65,105,65,103,110,104,67,50,109,57,88,121,67,89,56,88,49,106,52,99,86,97,119,80,118,118,56,71,10,67,77,83,70,120,101,66,102,103,43,122,52,47,102,101,116,72,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,3,161,38,13,206,97,43,74,234,58,1,42,54,35,129,127,179,208,60,55,24,130,178,58,91,110,217,25,205,181,137,209,2,32,102,100,15,5,241,183,66,213,155,29,0,190,90,198,100,79,85,34,185,247,19,177,28,70,61,118,202,60,243,71,139,28]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('41cda8358bf92e024abd127dd7893b9cdcea4449553e1ed43d5de6494d3930d4', '167,242,90,79,38,19,184,68,189,103,122,235,255,23,251,198,171,85,208,122,255,143,74,243,189,55,104,140,177,219,212,214', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,90,47,85,89,83,77,101,76,68,52,75,71,65,112,113,69,51,76,74,67,107,117,122,113,109,54,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,48,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,49,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,87,71,68,90,104,79,76,70,98,84,103,65,47,121,118,117,74,98,84,82,54,74,99,108,10,89,112,85,111,111,74,120,66,47,72,113,116,70,97,104,43,68,101,120,47,79,122,115,70,74,116,66,108,105,105,70,97,102,85,109,89,85,113,86,68,120,71,84,103,121,111,72,116,74,49,82,48,103,73,120,54,90,105,72,68,47,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,77,56,77,87,10,69,100,74,79,115,113,48,112,71,43,77,113,115,57,107,67,76,76,107,72,49,107,107,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,57,85,122,111,73,79,108,54,67,67,108,73,68,97,65,117,87,67,54,54,105,81,100,70,10,97,79,56,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,109,81,53,78,122,73,52,90,109,82,108,77,68,85,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,117,89,79,71,85,10,83,119,70,110,56,70,99,55,112,70,116,78,51,110,57,113,67,48,121,67,113,55,99,110,78,114,50,77,103,83,65,90,114,82,71,75,99,81,73,103,70,88,51,83,47,103,113,84,43,52,86,54,114,66,52,111,89,77,65,111,109,69,118,66,10,109,57,65,117,83,48,107,76,104,50,52,85,121,89,71,116,107,88,103,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[234,118,86,126,147,50,243,95,82,248,123,220,45,112,117,127,194,169,116,129,178,60,124,176]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[207,119,184,134,102,43,250,147,20,13,157,160,1,131,107,172,59,103,100,151,227,100,205,72,112,118,64,65,219,135,166,40]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,70,72,120,109,47,118,56,80,71,48,80,108,101,85,87,72,97,84,106,90,100,79,83,112,76,75,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,48,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,49,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,88,78,86,110,109,105,113,120,101,84,73,54,71,89,102,52,47,102,111,99,73,110,57,76,114,101,121,81,122,76,10,43,111,73,90,101,88,69,75,107,88,111,118,106,77,54,83,97,100,122,113,71,116,71,70,80,108,52,101,53,47,56,89,85,82,101,87,70,103,55,76,71,110,88,72,110,100,101,98,51,113,56,57,73,65,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,51,51,100,47,97,118,85,67,108,67,10,50,102,70,87,98,118,112,80,76,53,83,114,111,72,65,89,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,86,77,54,67,68,112,101,103,103,112,83,65,50,103,76,108,103,117,117,111,107,72,82,87,106,118,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,101,47,80,111,104,51,10,79,57,97,106,103,86,80,47,56,97,116,73,98,67,78,103,87,112,106,104,68,48,54,81,122,76,75,70,112,101,79,71,118,110,70,74,65,105,65,103,110,104,67,50,109,57,88,121,67,89,56,88,49,106,52,99,86,97,119,80,118,118,56,71,10,67,77,83,70,120,101,66,102,103,43,122,52,47,102,101,116,72,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,174,245,55,85,130,161,21,24,100,151,222,5,165,218,155,86,148,105,73,22,123,4,114,105,118,28,3,70,78,166,185,118,2,32,116,88,209,253,243,186,62,125,93,246,34,125,74,29,10,101,151,213,96,179,25,67,201,234,221,96,202,227,42,131,141,8]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,66,101,80,109,89,104,115,72,118,75,122,53,113,84,104,73,71,121,52,53,72,107,83,115,78,87,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,81,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,85,119,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,119,57,43,89,120,98,51,80,49,97,68,51,112,118,86,103,89,67,57,120,87,88,118,116,48,109,111,115,88,90,76,103,70,83,101,115,10,121,67,119,80,57,102,79,55,50,76,109,80,66,117,66,119,105,55,67,90,48,106,70,49,73,48,117,57,107,104,102,76,87,51,48,65,85,70,68,77,77,86,88,75,117,120,120,50,57,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,43,115,107,86,112,43,89,102,50,97,105,71,82,73,122,56,10,66,67,66,66,55,116,111,67,55,105,81,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,109,121,116,100,114,121,79,81,74,120,108,69,115,121,53,97,70,109,114,82,43,87,83,109,50,90,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,101,53,106,106,112,81,111,90,51,85,68,84,10,53,52,52,120,104,57,122,88,80,119,97,88,73,48,111,79,105,54,113,103,87,69,113,52,69,79,89,88,110,51,77,67,73,67,81,77,70,78,73,53,106,104,107,48,81,87,81,47,68,87,47,74,55,115,43,72,90,85,73,120,117,90,122,55,10,115,118,108,111,68,84,99,115,122,71,74,88,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,239,114,110,248,68,106,161,156,208,121,56,149,100,116,29,63,80,201,33,139,75,29,8,162,138,193,70,138,209,6,61,18,2,32,25,73,181,105,95,200,242,158,105,229,119,153,187,229,212,246,241,20,226,147,23,2,192,44,183,76,184,201,68,228,13,0]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('e42ea9221aac45d21cfd15cd9ee7add7bd6a5d2d6e78d0ad3433670480731620', '218,165,246,208,20,7,25,120,154,218,205,160,179,36,137,63,63,160,31,126,243,158,78,117,90,95,191,152,219,221,212,187', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,71,72,55,117,98,86,88,113,105,53,118,72,43,97,114,76,74,77,111,102,103,57,99,80,83,81,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,122,65,51,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,122,69,121,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,50,53,104,75,102,90,43,57,104,74,111,99,49,47,81,70,115,98,110,114,108,78,57,97,71,120,47,66,70,10,99,49,115,52,106,48,86,113,85,105,100,52,76,116,109,121,99,76,72,114,68,104,53,75,89,56,113,66,71,76,85,53,71,53,118,100,72,106,87,87,107,67,66,118,80,52,73,75,116,116,53,106,122,72,52,53,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,81,49,69,85,71,55,89,75,97,102,10,68,50,122,56,122,89,121,82,77,120,48,108,70,110,83,120,114,106,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,83,114,74,80,90,75,79,81,112,105,119,53,72,79,73,56,84,49,65,75,77,83,84,72,76,116,97,84,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,121,78,50,82,104,77,68,78,107,79,71,78,108,77,84,65,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,106,103,88,77,89,53,48,77,105,75,110,10,76,106,79,47,119,89,84,121,120,81,98,120,56,50,105,102,103,112,112,113,121,106,79,65,78,88,113,120,105,106,111,67,73,65,74,115,67,120,107,115,112,54,113,65,51,74,56,83,70,103,97,68,116,102,73,89,55,121,85,89,85,103,106,79,10,115,115,103,51,49,110,101,65,50,49,43,117,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[154,70,120,68,220,153,196,67,63,74,168,194,119,138,10,148,227,35,135,166,174,241,194,9]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[173,46,163,223,236,124,117,232,78,201,172,55,157,72,80,65,34,55,83,116,204,170,174,6,230,80,114,229,78,67,208,241]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,90,52,43,76,87,118,76,87,105,107,105,48,47,78,66,99,90,111,68,76,88,117,47,118,113,107,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,99,119,78,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,99,120,77,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,50,66,87,101,47,79,80,83,108,76,90,85,119,80,108,109,67,68,114,43,77,87,50,107,98,54,84,112,89,10,81,112,121,113,81,97,110,51,65,111,121,108,108,87,78,100,52,114,49,111,89,52,121,79,104,70,81,82,87,122,103,54,85,115,73,67,81,57,89,53,76,112,115,87,105,66,79,87,107,76,86,81,97,114,97,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,77,78,84,89,114,114,70,56,51,85,97,10,107,55,88,98,109,102,117,112,99,70,121,120,70,53,55,122,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,72,101,80,70,113,70,108,87,73,70,51,113,84,115,77,55,85,72,82,55,43,88,52,47,112,77,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,47,71,84,56,56,10,113,114,66,117,56,74,47,81,73,65,66,113,57,74,76,55,106,53,75,68,115,98,78,108,43,109,47,66,73,100,98,43,76,77,122,78,113,103,73,103,86,105,74,75,105,74,56,80,104,122,104,122,74,108,112,90,54,55,85,114,83,89,43,78,10,85,55,86,120,99,118,109,104,49,57,103,70,104,51,98,117,119,97,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,184,144,203,252,188,194,17,113,149,54,200,57,233,128,59,134,117,166,43,170,190,182,151,115,68,6,133,3,145,45,75,120,2,32,69,122,128,5,6,218,253,132,95,30,43,69,151,149,96,231,116,113,104,11,5,178,254,185,212,134,155,137,227,182,10,47]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,88,74,72,88,73,107,76,47,69,81,111,70,49,55,56,79,73,53,80,86,50,106,74,48,116,85,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,122,65,51,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,122,69,121,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,121,86,65,101,105,72,67,119,71,53,99,51,117,51,77,114,99,65,72,77,57,120,87,68,54,75,106,79,108,49,79,116,104,109,76,86,10,112,99,110,99,47,105,56,81,109,108,48,57,114,119,100,57,67,88,110,79,122,104,89,106,57,65,97,115,119,50,82,56,119,101,114,48,54,90,101,48,50,88,109,102,83,109,68,55,100,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,77,50,99,113,103,105,117,110,97,88,66,49,108,57,102,85,10,83,107,120,49,76,74,73,55,52,110,48,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,113,121,84,50,83,106,107,75,89,115,79,82,122,105,80,69,57,81,67,106,69,107,120,121,55,87,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,79,122,97,67,120,104,113,56,77,98,55,86,10,78,78,105,121,47,75,75,84,79,103,51,57,79,120,55,84,119,43,116,43,107,114,57,116,47,74,90,101,120,99,85,67,73,69,118,84,57,101,50,65,81,69,89,99,51,114,66,78,70,106,67,49,88,74,121,118,74,67,112,54,116,50,88,80,10,48,73,66,78,113,47,114,108,107,115,106,67,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,154,233,118,248,150,96,144,217,177,21,136,152,68,42,81,248,32,252,84,246,74,61,77,0,84,52,45,250,91,211,145,146,2,32,77,104,214,12,29,128,250,95,244,63,169,65,20,44,135,243,41,75,35,166,10,193,17,48,192,49,109,67,216,125,167,137]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('c36056c90d4d87ba9306a0c3de1bed70aa5a96c489b4381b21c0e775136a0346', '211,71,33,41,140,64,31,65,204,237,65,240,93,63,204,128,67,46,245,221,148,145,51,175,220,205,44,121,224,28,47,187', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,98,113,78,56,109,88,115,57,78,118,86,74,77,70,89,106,113,56,111,113,105,112,69,53,56,105,52,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,99,119,78,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,99,120,77,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,89,107,69,81,52,98,107,51,85,98,108,110,70,98,74,67,69,86,43,86,104,50,55,84,10,82,75,50,73,99,104,48,114,50,107,114,106,116,89,116,88,56,77,113,86,112,117,66,55,110,84,76,47,75,69,117,86,113,105,105,119,113,101,115,121,74,67,68,109,106,74,115,85,52,56,83,55,89,89,47,120,98,75,48,72,111,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,68,99,76,75,10,120,114,98,73,114,90,121,57,121,120,106,75,69,100,121,82,75,43,90,57,102,122,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,100,52,56,87,111,87,86,89,103,88,101,112,79,119,122,116,81,100,72,118,53,102,106,43,10,107,119,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,106,100,107,89,84,65,122,90,68,104,106,90,84,69,119,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,105,78,66,57,120,10,69,54,85,68,87,103,86,88,47,108,103,103,56,69,73,118,50,82,69,111,83,72,90,107,69,86,74,112,121,53,72,54,51,104,85,82,65,81,73,103,97,89,72,87,103,78,88,78,99,117,110,97,118,69,100,72,54,79,100,82,118,66,109,47,10,47,49,80,114,69,105,117,79,43,75,90,100,112,67,84,104,119,97,119,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[155,138,92,159,39,41,161,241,113,175,20,5,124,131,176,135,201,190,135,210,133,227,53,22]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[80,149,255,156,218,196,125,106,106,200,64,226,232,6,126,156,110,128,9,45,75,50,220,194,244,245,182,245,247,113,217,23]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,90,52,43,76,87,118,76,87,105,107,105,48,47,78,66,99,90,111,68,76,88,117,47,118,113,107,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,99,119,78,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,99,120,77,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,50,66,87,101,47,79,80,83,108,76,90,85,119,80,108,109,67,68,114,43,77,87,50,107,98,54,84,112,89,10,81,112,121,113,81,97,110,51,65,111,121,108,108,87,78,100,52,114,49,111,89,52,121,79,104,70,81,82,87,122,103,54,85,115,73,67,81,57,89,53,76,112,115,87,105,66,79,87,107,76,86,81,97,114,97,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,77,78,84,89,114,114,70,56,51,85,97,10,107,55,88,98,109,102,117,112,99,70,121,120,70,53,55,122,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,72,101,80,70,113,70,108,87,73,70,51,113,84,115,77,55,85,72,82,55,43,88,52,47,112,77,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,47,71,84,56,56,10,113,114,66,117,56,74,47,81,73,65,66,113,57,74,76,55,106,53,75,68,115,98,78,108,43,109,47,66,73,100,98,43,76,77,122,78,113,103,73,103,86,105,74,75,105,74,56,80,104,122,104,122,74,108,112,90,54,55,85,114,83,89,43,78,10,85,55,86,120,99,118,109,104,49,57,103,70,104,51,98,117,119,97,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,127,64,219,198,186,209,0,152,219,120,235,31,48,183,194,200,166,174,138,177,229,78,221,21,123,239,85,162,15,12,106,46,2,32,2,1,5,100,52,48,36,84,176,153,243,78,42,73,43,140,84,14,115,231,48,159,18,115,227,71,100,136,86,68,128,61]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,88,74,72,88,73,107,76,47,69,81,111,70,49,55,56,79,73,53,80,86,50,106,74,48,116,85,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,122,65,51,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,122,69,121,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,121,86,65,101,105,72,67,119,71,53,99,51,117,51,77,114,99,65,72,77,57,120,87,68,54,75,106,79,108,49,79,116,104,109,76,86,10,112,99,110,99,47,105,56,81,109,108,48,57,114,119,100,57,67,88,110,79,122,104,89,106,57,65,97,115,119,50,82,56,119,101,114,48,54,90,101,48,50,88,109,102,83,109,68,55,100,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,77,50,99,113,103,105,117,110,97,88,66,49,108,57,102,85,10,83,107,120,49,76,74,73,55,52,110,48,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,113,121,84,50,83,106,107,75,89,115,79,82,122,105,80,69,57,81,67,106,69,107,120,121,55,87,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,79,122,97,67,120,104,113,56,77,98,55,86,10,78,78,105,121,47,75,75,84,79,103,51,57,79,120,55,84,119,43,116,43,107,114,57,116,47,74,90,101,120,99,85,67,73,69,118,84,57,101,50,65,81,69,89,99,51,114,66,78,70,106,67,49,88,74,121,118,74,67,112,54,116,50,88,80,10,48,73,66,78,113,47,114,108,107,115,106,67,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,87,161,2,6,205,251,79,15,180,209,35,227,121,54,5,35,63,165,123,245,169,6,105,191,31,76,85,137,208,207,131,190,2,32,125,103,229,26,35,5,91,143,87,53,151,90,60,176,190,132,23,215,247,209,59,115,48,0,146,114,222,104,236,33,50,62]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("transaction_id", "fabric_block_id", "fabric_transaction_data") VALUES ('d5eafbe70b638d9936884c33c694e90c8e6a65fed20b05d1a19f3e811745e5ed', '188,176,131,156,184,160,126,28,19,249,243,18,149,250,243,131,228,230,22,24,39,166,13,196,28,171,171,130,243,181,140,132', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,98,113,78,56,109,88,115,57,78,118,86,74,77,70,89,106,113,56,111,113,105,112,69,53,56,105,52,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,99,119,78,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,99,120,77,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,89,107,69,81,52,98,107,51,85,98,108,110,70,98,74,67,69,86,43,86,104,50,55,84,10,82,75,50,73,99,104,48,114,50,107,114,106,116,89,116,88,56,77,113,86,112,117,66,55,110,84,76,47,75,69,117,86,113,105,105,119,113,101,115,121,74,67,68,109,106,74,115,85,52,56,83,55,89,89,47,120,98,75,48,72,111,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,68,99,76,75,10,120,114,98,73,114,90,121,57,121,120,106,75,69,100,121,82,75,43,90,57,102,122,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,100,52,56,87,111,87,86,89,103,88,101,112,79,119,122,116,81,100,72,118,53,102,106,43,10,107,119,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,106,100,107,89,84,65,122,90,68,104,106,90,84,69,119,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,105,78,66,57,120,10,69,54,85,68,87,103,86,88,47,108,103,103,56,69,73,118,50,82,69,111,83,72,90,107,69,86,74,112,121,53,72,54,51,104,85,82,65,81,73,103,97,89,72,87,103,78,88,78,99,117,110,97,118,69,100,72,54,79,100,82,118,66,109,47,10,47,49,80,114,69,105,117,79,43,75,90,100,112,67,84,104,119,97,119,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[163,91,35,190,144,127,158,215,56,78,177,110,214,138,120,13,9,206,199,229,200,194,122,62]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[119,124,150,149,59,114,78,68,151,115,140,123,5,122,217,24,71,196,215,229,218,189,215,219,236,125,146,173,194,65,66,254]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,88,74,72,88,73,107,76,47,69,81,111,70,49,55,56,79,73,53,80,86,50,106,74,48,116,85,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,122,65,51,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,122,69,121,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,121,86,65,101,105,72,67,119,71,53,99,51,117,51,77,114,99,65,72,77,57,120,87,68,54,75,106,79,108,49,79,116,104,109,76,86,10,112,99,110,99,47,105,56,81,109,108,48,57,114,119,100,57,67,88,110,79,122,104,89,106,57,65,97,115,119,50,82,56,119,101,114,48,54,90,101,48,50,88,109,102,83,109,68,55,100,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,77,50,99,113,103,105,117,110,97,88,66,49,108,57,102,85,10,83,107,120,49,76,74,73,55,52,110,48,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,113,121,84,50,83,106,107,75,89,115,79,82,122,105,80,69,57,81,67,106,69,107,120,121,55,87,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,79,122,97,67,120,104,113,56,77,98,55,86,10,78,78,105,121,47,75,75,84,79,103,51,57,79,120,55,84,119,43,116,43,107,114,57,116,47,74,90,101,120,99,85,67,73,69,118,84,57,101,50,65,81,69,89,99,51,114,66,78,70,106,67,49,88,74,121,118,74,67,112,54,116,50,88,80,10,48,73,66,78,113,47,114,108,107,115,106,67,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,252,245,123,2,173,239,188,64,24,150,44,253,144,26,210,239,218,199,251,97,161,35,68,139,56,101,80,46,207,43,190,126,2,32,70,1,221,233,30,228,94,168,111,192,236,141,31,173,96,68,87,69,131,225,107,244,245,209,109,105,83,252,126,19,157,104]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,90,52,43,76,87,118,76,87,105,107,105,48,47,78,66,99,90,111,68,76,88,117,47,118,113,107,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,99,119,78,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,99,120,77,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,50,66,87,101,47,79,80,83,108,76,90,85,119,80,108,109,67,68,114,43,77,87,50,107,98,54,84,112,89,10,81,112,121,113,81,97,110,51,65,111,121,108,108,87,78,100,52,114,49,111,89,52,121,79,104,70,81,82,87,122,103,54,85,115,73,67,81,57,89,53,76,112,115,87,105,66,79,87,107,76,86,81,97,114,97,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,77,78,84,89,114,114,70,56,51,85,97,10,107,55,88,98,109,102,117,112,99,70,121,120,70,53,55,122,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,72,101,80,70,113,70,108,87,73,70,51,113,84,115,77,55,85,72,82,55,43,88,52,47,112,77,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,47,71,84,56,56,10,113,114,66,117,56,74,47,81,73,65,66,113,57,74,76,55,106,53,75,68,115,98,78,108,43,109,47,66,73,100,98,43,76,77,122,78,113,103,73,103,86,105,74,75,105,74,56,80,104,122,104,122,74,108,112,90,54,55,85,114,83,89,43,78,10,85,55,86,120,99,118,109,104,49,57,103,70,104,51,98,117,119,97,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,50,126,53,187,140,118,16,165,38,140,232,164,12,109,210,118,225,178,188,156,58,21,29,114,131,212,187,47,93,86,217,101,2,32,29,196,233,166,117,170,44,22,80,126,12,6,207,90,200,229,228,17,206,140,149,67,40,92,193,28,123,126,241,255,126,86]}}]}}}""}"'); diff --git a/packages/cactus-plugin-persistence-fabric/src/test/sql/insert-test-data.sql b/packages/cactus-plugin-persistence-fabric/src/test/sql/insert-test-data.sql index bfd652b584..f61fc68623 100644 --- a/packages/cactus-plugin-persistence-fabric/src/test/sql/insert-test-data.sql +++ b/packages/cactus-plugin-persistence-fabric/src/test/sql/insert-test-data.sql @@ -1,209 +1,1802 @@ -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('97a504319208dbe3f586019e1f60002f03bfcafb6d6d21b45230cd98202bf04e', '121,12,8,11,228,34,113,231,36,126,129,182,171,131,67,102,192,167,38,174,88,174,183,47,105,48,109,248,3,92,97,235', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,72,110,83,79,43,78,109,87,72,122,78,111,80,71,104,52,116,54,106,43,54,112,66,121,84,81,103,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,65,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,69,122,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,82,117,69,121,97,122,98,53,103,121,70,77,79,99,110,72,81,47,67,67,43,77,113,52,80,69,120,73,67,43,10,69,83,101,118,71,108,108,57,68,102,90,107,107,80,68,53,115,89,74,73,82,104,108,110,57,120,110,100,50,106,89,48,102,87,85,100,76,49,70,47,120,81,54,106,57,70,86,101,49,74,112,67,55,80,107,115,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,81,116,71,104,49,54,75,98,68,90,10,114,78,83,121,65,87,81,77,57,120,89,116,54,84,57,105,98,84,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,83,69,90,87,73,51,54,86,73,70,104,90,57,99,67,65,53,83,69,109,78,104,77,75,98,67,67,68,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,48,89,84,90,107,90,68,66,108,78,109,69,119,90,106,99,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,84,109,78,57,112,55,116,57,76,77,10,55,118,101,51,73,117,116,84,71,50,120,88,83,74,47,119,82,119,85,70,71,74,118,57,99,53,104,116,119,121,77,77,65,105,65,67,101,89,56,51,47,104,82,86,80,75,68,81,106,56,82,105,111,57,72,111,117,98,67,70,98,52,101,50,10,104,87,116,102,52,53,51,71,97,77,119,75,101,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[148,58,13,82,40,46,97,141,162,191,104,41,190,183,71,137,56,89,0,172,221,207,244,227]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[225,240,18,233,185,236,235,141,98,141,34,213,140,52,213,73,213,133,40,227,133,142,111,45,109,191,79,33,177,188,188,156]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,68,120,75,110,83,71,83,108,101,105,108,85,74,76,65,83,108,105,73,50,73,104,71,76,52,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,119,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,120,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,88,75,117,65,47,80,121,74,81,116,72,80,108,79,57,72,54,86,98,69,79,106,88,117,85,117,110,107,65,104,10,54,56,67,106,71,103,122,109,120,79,89,106,108,82,47,47,119,106,80,51,115,90,105,54,69,103,73,81,104,103,70,104,79,69,48,49,85,114,90,68,97,113,75,119,104,89,67,98,117,118,48,55,114,107,113,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,68,119,119,87,107,87,72,48,115,120,65,10,51,114,114,108,53,119,115,68,113,65,74,69,99,104,43,110,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,73,121,82,86,102,110,74,87,52,76,70,114,88,113,105,84,97,48,87,48,79,68,118,112,79,81,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,55,100,88,65,80,10,84,70,118,114,106,48,113,112,119,106,52,106,54,57,115,56,113,54,84,104,86,120,66,97,108,90,77,119,49,84,111,120,78,100,97,86,120,103,73,103,87,113,90,47,120,52,69,105,74,55,90,69,68,105,79,53,88,72,43,122,115,120,69,113,10,103,88,113,115,67,97,105,85,77,88,72,76,101,56,68,48,116,43,77,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,99,190,50,206,203,51,6,134,206,32,115,25,222,234,116,207,235,0,76,224,66,87,104,30,107,220,187,206,192,86,215,229,2,32,98,38,62,244,28,230,198,178,242,43,66,192,186,201,74,58,196,108,148,16,243,91,10,7,122,85,137,247,254,47,198,180]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,97,99,77,55,101,116,49,77,65,83,109,100,57,54,100,121,110,86,67,87,90,100,75,87,49,118,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,65,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,69,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,112,72,73,121,82,102,69,83,106,57,110,82,70,90,112,108,101,90,85,75,57,68,82,52,65,97,67,76,67,119,86,71,118,77,109,10,82,89,97,120,53,83,55,115,77,122,57,70,57,114,87,69,102,74,116,76,90,84,121,104,67,105,106,86,90,56,99,78,104,56,100,120,100,77,86,119,79,57,103,51,87,112,55,48,101,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,83,119,89,86,106,108,74,81,72,102,120,56,74,116,78,43,10,83,70,69,109,97,108,49,115,69,75,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,104,71,86,105,78,43,108,83,66,89,87,102,88,65,103,79,85,104,74,106,89,84,67,109,119,103,103,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,76,106,73,100,113,118,65,111,117,69,98,10,111,88,98,66,87,67,108,113,73,122,101,69,55,84,115,70,73,72,112,66,55,53,57,119,88,102,67,115,66,43,102,119,65,105,65,76,81,120,106,43,102,86,108,81,104,113,109,74,48,101,83,121,100,101,122,121,100,51,105,99,81,56,65,83,10,75,53,86,88,75,102,68,53,102,99,114,84,111,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,53,60,155,237,118,164,244,6,59,146,235,41,194,32,150,228,188,30,222,233,61,195,48,226,202,97,70,5,99,69,182,118,2,32,95,25,79,17,30,48,86,166,118,241,205,199,253,132,254,0,79,50,186,140,64,111,93,118,29,91,36,248,0,104,157,47]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('ac41511299d1fcd1a2ddbd78228c5388b5dc814f8fb0a857e84b674907f2221b', '39,22,101,242,200,133,19,92,63,92,54,255,48,201,26,45,114,171,3,67,155,14,205,77,168,196,153,221,39,212,133,236', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,89,71,76,74,68,111,57,82,107,120,103,103,47,83,115,78,100,43,80,89,77,75,88,47,101,81,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,119,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,120,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,97,51,105,113,111,67,100,115,97,70,43,65,43,109,90,78,115,115,66,52,89,43,104,10,88,70,69,104,102,47,81,55,104,47,77,87,119,48,112,53,65,104,43,72,50,75,99,53,98,80,90,103,109,90,75,68,105,85,76,72,117,119,90,67,107,105,100,83,50,85,114,119,52,118,118,49,120,118,53,85,77,119,52,74,85,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,98,57,48,98,10,47,68,43,80,116,85,110,101,110,112,78,81,109,86,56,111,50,117,56,110,80,71,48,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,106,74,70,86,43,99,108,98,103,115,87,116,101,113,74,78,114,82,98,81,52,79,43,10,107,53,65,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,71,69,50,90,71,81,119,90,84,90,104,77,71,89,51,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,113,51,72,118,55,90,10,55,57,86,89,86,86,119,106,86,48,73,98,69,88,68,116,85,103,101,114,118,73,108,87,80,66,69,68,65,108,108,121,121,43,118,87,65,105,66,65,55,107,48,119,76,105,74,50,72,57,83,121,47,49,86,85,86,68,104,104,51,97,120,73,10,79,113,110,99,52,105,122,119,75,111,117,48,57,67,117,119,65,81,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[41,183,106,249,33,129,22,147,68,219,135,252,150,184,216,150,188,177,235,248,168,139,222,27]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[133,197,226,240,105,0,215,249,192,251,72,164,139,175,67,97,22,206,161,147,145,13,222,243,232,34,59,51,65,206,83,117]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,68,120,75,110,83,71,83,108,101,105,108,85,74,76,65,83,108,105,73,50,73,104,71,76,52,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,119,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,120,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,88,75,117,65,47,80,121,74,81,116,72,80,108,79,57,72,54,86,98,69,79,106,88,117,85,117,110,107,65,104,10,54,56,67,106,71,103,122,109,120,79,89,106,108,82,47,47,119,106,80,51,115,90,105,54,69,103,73,81,104,103,70,104,79,69,48,49,85,114,90,68,97,113,75,119,104,89,67,98,117,118,48,55,114,107,113,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,68,119,119,87,107,87,72,48,115,120,65,10,51,114,114,108,53,119,115,68,113,65,74,69,99,104,43,110,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,73,121,82,86,102,110,74,87,52,76,70,114,88,113,105,84,97,48,87,48,79,68,118,112,79,81,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,55,100,88,65,80,10,84,70,118,114,106,48,113,112,119,106,52,106,54,57,115,56,113,54,84,104,86,120,66,97,108,90,77,119,49,84,111,120,78,100,97,86,120,103,73,103,87,113,90,47,120,52,69,105,74,55,90,69,68,105,79,53,88,72,43,122,115,120,69,113,10,103,88,113,115,67,97,105,85,77,88,72,76,101,56,68,48,116,43,77,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,200,35,222,37,76,67,29,49,102,47,206,59,74,133,2,130,132,236,37,219,227,46,181,152,67,161,101,194,119,254,136,125,2,32,43,33,184,51,159,93,238,44,172,127,198,232,76,84,204,200,43,96,212,113,93,41,62,224,193,233,195,39,126,53,31,95]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,97,99,77,55,101,116,49,77,65,83,109,100,57,54,100,121,110,86,67,87,90,100,75,87,49,118,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,65,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,69,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,112,72,73,121,82,102,69,83,106,57,110,82,70,90,112,108,101,90,85,75,57,68,82,52,65,97,67,76,67,119,86,71,118,77,109,10,82,89,97,120,53,83,55,115,77,122,57,70,57,114,87,69,102,74,116,76,90,84,121,104,67,105,106,86,90,56,99,78,104,56,100,120,100,77,86,119,79,57,103,51,87,112,55,48,101,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,83,119,89,86,106,108,74,81,72,102,120,56,74,116,78,43,10,83,70,69,109,97,108,49,115,69,75,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,104,71,86,105,78,43,108,83,66,89,87,102,88,65,103,79,85,104,74,106,89,84,67,109,119,103,103,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,76,106,73,100,113,118,65,111,117,69,98,10,111,88,98,66,87,67,108,113,73,122,101,69,55,84,115,70,73,72,112,66,55,53,57,119,88,102,67,115,66,43,102,119,65,105,65,76,81,120,106,43,102,86,108,81,104,113,109,74,48,101,83,121,100,101,122,121,100,51,105,99,81,56,65,83,10,75,53,86,88,75,102,68,53,102,99,114,84,111,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,65,149,225,73,176,47,40,205,247,49,99,206,178,204,167,188,88,157,206,63,175,243,228,76,9,18,3,99,140,174,79,106,2,32,62,101,6,61,228,45,194,132,219,138,58,13,134,131,1,204,111,170,94,93,249,234,135,116,15,157,212,74,43,224,181,49]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('78d793595c43efae9c9aeaaf1e49cb8f2f5f073ca1ec9ed057ab3bbc28f5c8db', '55,189,72,201,148,149,194,231,87,147,187,59,166,212,209,13,135,247,190,207,9,200,120,140,76,45,199,69,50,183,214,204', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,89,71,76,74,68,111,57,82,107,120,103,103,47,83,115,78,100,43,80,89,77,75,88,47,101,81,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,119,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,120,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,97,51,105,113,111,67,100,115,97,70,43,65,43,109,90,78,115,115,66,52,89,43,104,10,88,70,69,104,102,47,81,55,104,47,77,87,119,48,112,53,65,104,43,72,50,75,99,53,98,80,90,103,109,90,75,68,105,85,76,72,117,119,90,67,107,105,100,83,50,85,114,119,52,118,118,49,120,118,53,85,77,119,52,74,85,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,98,57,48,98,10,47,68,43,80,116,85,110,101,110,112,78,81,109,86,56,111,50,117,56,110,80,71,48,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,106,74,70,86,43,99,108,98,103,115,87,116,101,113,74,78,114,82,98,81,52,79,43,10,107,53,65,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,71,69,50,90,71,81,119,90,84,90,104,77,71,89,51,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,113,51,72,118,55,90,10,55,57,86,89,86,86,119,106,86,48,73,98,69,88,68,116,85,103,101,114,118,73,108,87,80,66,69,68,65,108,108,121,121,43,118,87,65,105,66,65,55,107,48,119,76,105,74,50,72,57,83,121,47,49,86,85,86,68,104,104,51,97,120,73,10,79,113,110,99,52,105,122,119,75,111,117,48,57,67,117,119,65,81,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[19,91,52,227,80,215,22,38,85,56,60,47,196,180,112,52,169,84,75,90,209,254,116,125]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[77,22,154,39,184,142,0,238,162,215,42,72,88,73,178,80,149,21,93,92,122,5,243,62,134,131,125,42,112,98,7,253]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,68,120,75,110,83,71,83,108,101,105,108,85,74,76,65,83,108,105,73,50,73,104,71,76,52,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,119,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,120,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,88,75,117,65,47,80,121,74,81,116,72,80,108,79,57,72,54,86,98,69,79,106,88,117,85,117,110,107,65,104,10,54,56,67,106,71,103,122,109,120,79,89,106,108,82,47,47,119,106,80,51,115,90,105,54,69,103,73,81,104,103,70,104,79,69,48,49,85,114,90,68,97,113,75,119,104,89,67,98,117,118,48,55,114,107,113,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,68,119,119,87,107,87,72,48,115,120,65,10,51,114,114,108,53,119,115,68,113,65,74,69,99,104,43,110,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,73,121,82,86,102,110,74,87,52,76,70,114,88,113,105,84,97,48,87,48,79,68,118,112,79,81,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,55,100,88,65,80,10,84,70,118,114,106,48,113,112,119,106,52,106,54,57,115,56,113,54,84,104,86,120,66,97,108,90,77,119,49,84,111,120,78,100,97,86,120,103,73,103,87,113,90,47,120,52,69,105,74,55,90,69,68,105,79,53,88,72,43,122,115,120,69,113,10,103,88,113,115,67,97,105,85,77,88,72,76,101,56,68,48,116,43,77,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,22,223,109,74,140,14,57,201,157,165,24,144,21,85,241,40,173,104,148,157,123,105,225,112,204,81,60,76,97,173,215,0,2,32,40,10,157,252,208,27,51,231,132,91,230,207,186,79,118,112,120,163,52,25,78,165,238,250,171,32,43,26,154,185,17,101]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,97,99,77,55,101,116,49,77,65,83,109,100,57,54,100,121,110,86,67,87,90,100,75,87,49,118,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,65,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,69,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,112,72,73,121,82,102,69,83,106,57,110,82,70,90,112,108,101,90,85,75,57,68,82,52,65,97,67,76,67,119,86,71,118,77,109,10,82,89,97,120,53,83,55,115,77,122,57,70,57,114,87,69,102,74,116,76,90,84,121,104,67,105,106,86,90,56,99,78,104,56,100,120,100,77,86,119,79,57,103,51,87,112,55,48,101,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,83,119,89,86,106,108,74,81,72,102,120,56,74,116,78,43,10,83,70,69,109,97,108,49,115,69,75,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,104,71,86,105,78,43,108,83,66,89,87,102,88,65,103,79,85,104,74,106,89,84,67,109,119,103,103,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,76,106,73,100,113,118,65,111,117,69,98,10,111,88,98,66,87,67,108,113,73,122,101,69,55,84,115,70,73,72,112,66,55,53,57,119,88,102,67,115,66,43,102,119,65,105,65,76,81,120,106,43,102,86,108,81,104,113,109,74,48,101,83,121,100,101,122,121,100,51,105,99,81,56,65,83,10,75,53,86,88,75,102,68,53,102,99,114,84,111,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,13,63,168,177,207,67,66,203,143,186,228,189,168,255,73,28,105,176,88,21,36,23,110,83,119,114,189,141,203,45,167,99,2,32,45,170,85,240,20,251,211,212,232,79,200,148,184,177,220,228,0,108,252,174,136,44,25,14,47,254,103,150,177,74,208,124]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('0d8a3a6f679e5a97f274aea8a407b666a4816485b426283af89e37288e5009bf', '135,47,161,29,83,155,250,57,123,131,25,47,58,29,238,31,197,227,215,174,187,116,179,165,190,40,231,102,150,35,201,206', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,98,81,69,75,48,101,116,118,117,84,120,116,87,66,105,111,107,103,43,97,69,78,56,79,105,107,81,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,73,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,73,49,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,84,122,117,70,112,73,89,67,87,107,103,80,110,72,83,84,118,65,50,84,103,86,107,115,78,106,73,57,88,82,10,119,101,121,83,76,106,77,50,79,53,86,85,122,84,84,89,111,85,115,72,53,77,89,53,110,112,78,75,52,76,86,65,120,104,114,113,86,54,114,122,99,100,103,54,98,82,119,113,102,116,74,54,102,54,107,84,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,71,66,114,90,73,111,76,121,110,10,83,97,50,103,68,97,73,104,47,77,108,78,98,119,84,89,114,84,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,83,52,122,70,107,49,83,77,113,55,74,54,48,112,85,99,112,99,76,80,83,49,118,68,81,88,57,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,122,77,68,100,109,77,50,86,106,78,68,70,104,78,84,85,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,76,77,76,115,57,72,83,90,52,73,10,72,53,48,98,82,70,84,98,43,113,86,80,120,98,103,86,47,120,117,82,83,69,74,54,84,55,109,85,50,116,118,115,65,105,65,100,116,108,47,121,103,117,122,119,104,53,122,48,80,109,83,81,69,73,114,112,81,52,83,88,79,48,105,72,10,72,122,121,77,113,122,82,102,117,119,112,109,50,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[251,164,1,189,151,136,61,124,127,136,215,180,183,96,113,101,216,190,39,83,174,18,121,46]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[186,27,174,198,125,95,90,151,221,159,20,164,204,138,252,14,105,71,155,34,169,104,246,127,223,129,239,116,12,42,151,23]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,114,111,120,111,104,97,98,52,88,113,90,90,52,54,106,119,79,71,88,121,72,82,70,71,105,65,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,121,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,121,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,119,101,103,72,107,51,85,120,111,47,50,88,121,120,89,47,90,65,85,104,86,81,66,49,105,106,118,55,106,53,10,122,98,97,107,105,73,114,69,113,112,82,70,56,113,68,115,112,119,116,88,65,81,115,71,76,82,74,110,70,98,103,101,65,119,119,86,51,70,88,85,100,71,110,82,70,72,90,83,120,120,107,90,99,71,50,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,113,112,112,68,117,118,97,107,68,103,10,55,98,68,78,80,110,102,105,50,109,113,53,78,120,109,111,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,122,110,109,98,65,48,87,114,118,43,57,84,73,76,90,86,118,120,76,100,88,122,73,106,110,71,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,114,86,83,105,43,10,68,119,121,71,65,69,122,109,108,117,120,71,116,121,111,110,87,74,49,103,111,77,113,114,99,111,70,88,103,121,76,70,87,43,116,107,50,119,73,103,74,90,89,79,90,89,98,52,43,74,75,89,76,71,116,100,86,53,107,81,111,75,72,120,10,114,89,75,106,74,51,51,109,71,54,66,56,48,77,75,66,72,48,81,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,172,184,80,223,141,171,110,172,165,10,157,125,76,82,191,13,96,38,125,76,91,101,132,102,233,252,159,57,181,209,196,179,2,32,93,149,71,197,2,87,149,110,143,73,138,24,60,2,23,116,95,53,229,186,221,13,130,113,23,40,141,224,116,158,154,253]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,72,48,107,113,72,54,73,119,82,122,48,111,121,76,51,116,118,69,116,119,98,105,107,89,51,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,73,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,73,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,57,53,106,82,100,75,80,85,55,76,100,43,116,117,113,82,120,86,57,90,108,120,102,82,79,83,70,47,65,88,71,102,53,90,56,86,10,50,90,84,112,87,106,75,80,110,67,73,57,43,74,117,86,82,86,113,78,65,114,71,109,107,112,84,108,83,49,98,118,86,114,99,69,98,78,57,87,79,99,78,76,73,114,43,69,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,88,70,71,81,108,119,77,99,98,78,78,57,57,69,73,118,10,50,68,89,108,65,105,54,85,53,78,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,77,120,90,78,85,106,75,117,121,101,116,75,86,72,75,88,67,122,48,116,98,119,48,70,47,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,104,112,108,104,116,80,70,115,89,79,10,98,57,116,110,98,89,109,113,100,117,103,73,114,67,54,86,81,54,79,122,83,90,55,74,81,87,52,111,104,74,110,113,65,105,66,111,67,50,70,90,97,85,111,80,80,105,87,112,70,47,82,74,107,98,47,47,89,84,49,120,50,77,102,90,10,83,69,43,50,75,101,120,99,98,99,120,57,108,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,167,35,255,141,134,219,43,19,198,183,65,105,201,214,2,56,15,180,42,184,191,194,185,182,150,118,74,5,219,226,23,231,2,32,6,190,7,191,40,87,214,227,60,166,17,147,18,246,66,76,144,201,114,83,28,131,122,225,205,63,85,248,56,12,20,135]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('f98cfea3491552cdb5f0916f766ea61549598a0ac04001f73a65bb5a17d99d9b', '68,242,0,239,172,0,76,229,109,242,185,178,137,105,125,119,31,221,142,27,8,150,35,142,110,76,186,146,127,87,202,254', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,69,113,89,51,78,47,79,49,82,48,70,116,78,52,107,98,70,65,97,86,100,47,72,114,83,100,65,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,121,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,121,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,120,66,100,67,121,80,102,120,101,48,98,53,112,49,84,54,56,107,88,97,48,79,107,99,10,115,65,51,53,73,99,71,98,78,98,68,54,108,88,86,87,105,104,111,55,48,118,52,48,78,98,104,84,77,99,48,114,83,51,79,114,55,99,112,89,81,69,72,97,122,102,120,77,70,122,72,89,82,81,111,87,97,87,55,43,121,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,112,54,89,104,10,118,82,71,115,70,108,87,119,97,104,86,70,86,70,88,86,43,80,114,105,76,108,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,47,79,101,90,115,68,82,97,117,47,55,49,77,103,116,108,87,47,69,116,49,102,77,105,10,79,99,89,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,65,51,90,106,78,108,89,122,81,120,89,84,85,49,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,70,103,80,55,43,10,100,69,97,48,116,81,106,80,113,76,88,52,119,48,108,67,107,85,111,106,106,110,89,117,108,65,97,90,54,50,108,117,108,102,116,103,80,65,73,103,68,52,107,104,56,72,48,90,72,50,52,120,70,112,72,79,108,55,73,111,48,101,120,86,10,50,86,119,53,54,85,54,101,114,72,65,118,101,104,69,112,88,52,81,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[143,32,7,200,230,177,146,189,200,111,4,137,88,50,136,3,70,124,61,255,173,254,182,109]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[43,235,160,54,35,106,148,13,223,15,210,9,188,190,151,164,70,10,225,123,4,245,243,225,104,61,2,111,171,211,192,72]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,72,48,107,113,72,54,73,119,82,122,48,111,121,76,51,116,118,69,116,119,98,105,107,89,51,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,73,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,73,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,57,53,106,82,100,75,80,85,55,76,100,43,116,117,113,82,120,86,57,90,108,120,102,82,79,83,70,47,65,88,71,102,53,90,56,86,10,50,90,84,112,87,106,75,80,110,67,73,57,43,74,117,86,82,86,113,78,65,114,71,109,107,112,84,108,83,49,98,118,86,114,99,69,98,78,57,87,79,99,78,76,73,114,43,69,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,88,70,71,81,108,119,77,99,98,78,78,57,57,69,73,118,10,50,68,89,108,65,105,54,85,53,78,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,77,120,90,78,85,106,75,117,121,101,116,75,86,72,75,88,67,122,48,116,98,119,48,70,47,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,104,112,108,104,116,80,70,115,89,79,10,98,57,116,110,98,89,109,113,100,117,103,73,114,67,54,86,81,54,79,122,83,90,55,74,81,87,52,111,104,74,110,113,65,105,66,111,67,50,70,90,97,85,111,80,80,105,87,112,70,47,82,74,107,98,47,47,89,84,49,120,50,77,102,90,10,83,69,43,50,75,101,120,99,98,99,120,57,108,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,188,6,221,131,233,217,248,181,57,153,95,7,230,169,75,141,10,205,117,219,210,117,166,20,228,29,74,186,87,93,53,159,2,32,9,113,102,55,133,86,153,230,58,218,160,71,17,127,157,125,188,62,144,164,218,80,139,5,79,110,198,212,136,48,89,35]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,114,111,120,111,104,97,98,52,88,113,90,90,52,54,106,119,79,71,88,121,72,82,70,71,105,65,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,121,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,121,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,119,101,103,72,107,51,85,120,111,47,50,88,121,120,89,47,90,65,85,104,86,81,66,49,105,106,118,55,106,53,10,122,98,97,107,105,73,114,69,113,112,82,70,56,113,68,115,112,119,116,88,65,81,115,71,76,82,74,110,70,98,103,101,65,119,119,86,51,70,88,85,100,71,110,82,70,72,90,83,120,120,107,90,99,71,50,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,113,112,112,68,117,118,97,107,68,103,10,55,98,68,78,80,110,102,105,50,109,113,53,78,120,109,111,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,122,110,109,98,65,48,87,114,118,43,57,84,73,76,90,86,118,120,76,100,88,122,73,106,110,71,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,114,86,83,105,43,10,68,119,121,71,65,69,122,109,108,117,120,71,116,121,111,110,87,74,49,103,111,77,113,114,99,111,70,88,103,121,76,70,87,43,116,107,50,119,73,103,74,90,89,79,90,89,98,52,43,74,75,89,76,71,116,100,86,53,107,81,111,75,72,120,10,114,89,75,106,74,51,51,109,71,54,66,56,48,77,75,66,72,48,81,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,63,5,207,228,104,139,126,205,200,12,76,193,146,62,125,57,119,231,228,25,212,89,20,162,234,58,111,174,84,37,170,197,2,32,24,144,2,219,79,45,50,177,129,59,137,20,69,248,153,203,240,96,63,209,183,165,30,10,34,113,177,4,199,160,228,76]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('e31b4b94a7a9b7e0cf4394d51436b663726ac3161cab8b94972a9b1e4dd0e63d', '171,192,117,80,187,153,68,47,40,219,127,166,123,77,142,66,202,226,78,236,250,180,48,149,58,114,49,72,126,9,72,203', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,69,113,89,51,78,47,79,49,82,48,70,116,78,52,107,98,70,65,97,86,100,47,72,114,83,100,65,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,121,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,121,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,120,66,100,67,121,80,102,120,101,48,98,53,112,49,84,54,56,107,88,97,48,79,107,99,10,115,65,51,53,73,99,71,98,78,98,68,54,108,88,86,87,105,104,111,55,48,118,52,48,78,98,104,84,77,99,48,114,83,51,79,114,55,99,112,89,81,69,72,97,122,102,120,77,70,122,72,89,82,81,111,87,97,87,55,43,121,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,112,54,89,104,10,118,82,71,115,70,108,87,119,97,104,86,70,86,70,88,86,43,80,114,105,76,108,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,47,79,101,90,115,68,82,97,117,47,55,49,77,103,116,108,87,47,69,116,49,102,77,105,10,79,99,89,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,65,51,90,106,78,108,89,122,81,120,89,84,85,49,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,70,103,80,55,43,10,100,69,97,48,116,81,106,80,113,76,88,52,119,48,108,67,107,85,111,106,106,110,89,117,108,65,97,90,54,50,108,117,108,102,116,103,80,65,73,103,68,52,107,104,56,72,48,90,72,50,52,120,70,112,72,79,108,55,73,111,48,101,120,86,10,50,86,119,53,54,85,54,101,114,72,65,118,101,104,69,112,88,52,81,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[55,141,158,18,30,205,134,55,136,226,177,159,243,154,45,22,5,41,163,61,217,74,117,252]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[120,134,231,242,212,112,1,54,143,148,91,205,158,123,85,10,150,141,221,236,172,57,120,143,10,68,45,39,23,95,238,245]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,72,48,107,113,72,54,73,119,82,122,48,111,121,76,51,116,118,69,116,119,98,105,107,89,51,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,73,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,73,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,57,53,106,82,100,75,80,85,55,76,100,43,116,117,113,82,120,86,57,90,108,120,102,82,79,83,70,47,65,88,71,102,53,90,56,86,10,50,90,84,112,87,106,75,80,110,67,73,57,43,74,117,86,82,86,113,78,65,114,71,109,107,112,84,108,83,49,98,118,86,114,99,69,98,78,57,87,79,99,78,76,73,114,43,69,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,88,70,71,81,108,119,77,99,98,78,78,57,57,69,73,118,10,50,68,89,108,65,105,54,85,53,78,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,77,120,90,78,85,106,75,117,121,101,116,75,86,72,75,88,67,122,48,116,98,119,48,70,47,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,104,112,108,104,116,80,70,115,89,79,10,98,57,116,110,98,89,109,113,100,117,103,73,114,67,54,86,81,54,79,122,83,90,55,74,81,87,52,111,104,74,110,113,65,105,66,111,67,50,70,90,97,85,111,80,80,105,87,112,70,47,82,74,107,98,47,47,89,84,49,120,50,77,102,90,10,83,69,43,50,75,101,120,99,98,99,120,57,108,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,185,211,56,146,128,112,45,80,244,232,179,117,82,204,146,82,235,196,38,197,199,223,11,100,165,76,10,65,34,122,142,224,2,32,23,133,119,251,10,60,113,12,210,17,116,106,228,166,30,58,135,55,17,214,128,57,85,117,50,202,210,243,237,81,137,142]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,79,114,111,120,111,104,97,98,52,88,113,90,90,52,54,106,119,79,71,88,121,72,82,70,71,105,65,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,121,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,121,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,75,119,101,103,72,107,51,85,120,111,47,50,88,121,120,89,47,90,65,85,104,86,81,66,49,105,106,118,55,106,53,10,122,98,97,107,105,73,114,69,113,112,82,70,56,113,68,115,112,119,116,88,65,81,115,71,76,82,74,110,70,98,103,101,65,119,119,86,51,70,88,85,100,71,110,82,70,72,90,83,120,120,107,90,99,71,50,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,113,112,112,68,117,118,97,107,68,103,10,55,98,68,78,80,110,102,105,50,109,113,53,78,120,109,111,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,122,110,109,98,65,48,87,114,118,43,57,84,73,76,90,86,118,120,76,100,88,122,73,106,110,71,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,114,86,83,105,43,10,68,119,121,71,65,69,122,109,108,117,120,71,116,121,111,110,87,74,49,103,111,77,113,114,99,111,70,88,103,121,76,70,87,43,116,107,50,119,73,103,74,90,89,79,90,89,98,52,43,74,75,89,76,71,116,100,86,53,107,81,111,75,72,120,10,114,89,75,106,74,51,51,109,71,54,66,56,48,77,75,66,72,48,81,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,70,148,93,114,154,41,173,186,219,228,119,134,64,35,160,220,84,249,98,10,108,95,161,200,109,191,39,223,51,250,1,222,2,32,26,51,251,39,53,4,211,84,209,230,123,56,212,210,98,3,63,77,236,253,232,203,109,253,201,88,70,171,3,51,243,192]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('6b53958c89fa90cecf48ea46a1f21d89810cf010c35f8a2fb06324d157894066', '196,130,93,89,20,103,25,101,202,57,199,8,196,225,58,219,138,7,178,147,150,41,169,64,171,18,52,151,181,13,150,239', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,117,78,114,55,102,54,87,98,88,88,113,69,80,52,89,68,85,114,86,107,98,72,76,70,117,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,81,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,81,49,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,71,83,71,109,47,83,86,48,74,50,99,49,54,68,103,74,54,90,76,65,90,90,73,99,43,55,69,121,122,10,68,78,119,76,70,57,72,111,105,54,90,122,104,72,115,73,107,57,73,57,109,117,110,65,83,85,84,108,107,43,77,87,97,102,55,55,101,107,50,71,49,101,56,100,108,49,115,67,89,79,53,89,112,115,70,84,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,84,121,86,84,76,77,68,85,122,104,10,75,90,75,69,97,80,117,78,56,110,53,82,66,77,99,65,54,84,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,84,90,84,74,83,43,121,67,105,69,79,105,51,55,120,117,82,118,67,81,85,53,50,111,117,69,52,84,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,120,77,87,85,119,77,68,86,109,89,84,104,105,78,106,103,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,80,99,83,82,121,71,88,66,106,101,75,10,53,51,66,47,97,104,111,67,86,51,100,84,90,90,97,76,48,75,115,48,101,103,112,115,121,77,90,107,81,115,82,116,65,105,65,81,80,48,48,81,115,109,43,65,113,113,109,66,70,72,49,113,53,103,55,118,102,105,66,43,76,72,73,122,10,56,52,83,56,73,122,104,54,120,114,104,104,83,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[157,255,182,197,228,163,207,59,2,50,8,173,206,196,230,215,249,32,237,170,99,12,186,224]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[255,213,104,94,97,215,90,37,190,101,92,242,193,96,107,88,158,0,41,155,2,246,111,130,18,42,93,122,25,71,166,8]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,99,109,90,67,52,83,72,84,120,48,83,108,70,110,86,55,117,75,80,119,122,52,54,101,113,65,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,48,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,48,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,119,111,111,71,82,108,48,103,104,112,47,48,114,108,66,76,56,104,90,110,122,121,114,70,53,114,109,101,76,113,10,51,81,116,86,102,110,82,112,120,99,106,73,77,109,43,78,73,115,77,67,98,80,118,109,115,89,53,75,48,78,98,107,52,99,116,71,77,80,108,81,105,77,48,112,121,86,57,50,114,111,50,113,67,114,87,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,71,47,77,53,66,83,121,102,49,69,102,10,103,103,83,69,47,54,72,102,70,53,107,84,52,118,87,112,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,52,55,48,98,72,80,48,85,75,110,72,82,111,53,82,77,122,114,106,121,111,81,89,117,106,86,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,121,74,107,74,78,10,50,47,86,57,117,81,97,113,102,113,118,110,104,57,98,85,67,122,90,97,68,43,110,71,78,50,90,72,47,52,119,68,53,87,116,85,90,81,73,103,78,83,112,76,103,53,118,78,76,67,107,48,53,106,100,79,84,79,99,74,70,84,98,97,10,54,57,113,105,68,52,70,117,99,52,78,97,76,89,84,113,76,56,52,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,212,157,90,73,230,106,58,29,87,221,92,136,227,101,232,181,93,224,0,147,141,104,40,113,157,216,103,49,190,192,142,201,2,32,56,22,245,183,138,183,106,11,91,238,98,88,44,70,130,144,164,193,29,253,85,228,130,42,138,92,172,52,179,184,84,230]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,75,43,81,73,86,78,104,104,104,101,83,43,115,107,54,77,87,112,51,52,120,97,109,49,105,116,85,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,81,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,81,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,52,102,43,50,110,122,75,55,69,49,113,78,77,67,47,84,119,56,89,67,85,99,105,75,73,80,114,50,115,118,103,48,66,97,73,112,10,83,115,100,115,70,49,122,43,113,88,66,107,111,88,118,98,52,71,70,79,73,51,79,70,56,101,116,113,73,116,89,81,108,43,97,101,97,120,100,67,116,43,76,86,78,43,72,78,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,120,111,50,49,55,65,76,52,66,57,118,84,116,121,89,106,10,83,78,69,89,122,113,75,72,104,76,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,50,85,121,85,118,115,103,111,104,68,111,116,43,56,98,107,98,119,107,70,79,100,113,76,104,79,69,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,104,84,78,51,112,80,71,52,121,106,67,10,112,81,50,101,87,99,109,105,74,67,74,71,100,115,74,75,101,55,87,47,120,103,79,72,112,55,102,109,99,67,85,67,73,68,107,78,110,106,49,120,66,105,73,99,110,119,69,57,109,57,52,54,79,108,110,57,111,70,87,43,43,83,56,48,10,86,73,68,71,68,74,79,51,122,72,43,56,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,130,152,216,100,171,67,166,136,115,140,43,111,255,203,49,103,166,158,37,219,50,219,94,15,44,56,8,107,37,213,158,101,2,32,38,105,30,35,8,65,176,192,3,33,198,153,244,49,39,52,78,3,92,247,138,3,47,53,195,66,195,130,220,251,176,112]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('8c47dcdd4caa57cc9f00bd98a01125cd128ff6d093e9f5bbd71164e88df3b570', '192,89,141,115,68,224,166,6,69,251,196,184,29,26,197,159,32,56,59,150,32,174,191,73,255,50,132,160,14,134,125,126', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,102,70,90,47,121,71,54,107,69,103,89,81,109,87,88,52,79,51,120,122,82,116,110,82,66,117,99,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,48,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,48,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,48,48,119,57,71,48,82,109,100,105,66,100,76,53,73,67,54,119,116,87,100,109,55,49,10,47,112,77,54,105,107,65,114,119,47,57,103,86,86,110,83,115,112,106,79,43,68,89,57,97,74,48,98,113,88,49,117,100,51,55,70,75,101,54,71,85,55,50,118,111,109,122,70,87,70,73,84,103,121,120,101,83,89,79,52,68,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,106,82,110,76,10,104,90,82,89,104,119,89,54,120,113,89,84,74,121,104,116,100,119,73,75,69,85,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,98,106,118,82,115,99,47,82,81,113,99,100,71,106,108,69,122,79,117,80,75,104,66,105,10,54,78,85,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,84,70,108,77,68,65,49,90,109,69,52,89,106,89,52,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,86,50,82,77,84,67,10,66,86,47,102,102,49,67,90,72,103,106,109,117,97,47,84,97,78,77,84,75,43,53,98,49,99,53,52,75,80,118,66,70,107,84,74,65,105,65,76,70,111,50,57,87,72,116,78,86,57,120,56,72,85,68,112,67,53,105,55,112,112,75,121,10,104,52,70,86,85,117,120,116,50,111,55,111,120,78,47,88,79,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[217,138,246,206,70,205,188,252,3,17,199,71,198,103,200,39,183,50,208,63,139,50,59,101]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[42,210,161,37,81,208,108,162,130,81,77,142,107,202,88,239,213,207,107,93,174,27,50,12,126,234,211,188,234,206,216,50]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,75,43,81,73,86,78,104,104,104,101,83,43,115,107,54,77,87,112,51,52,120,97,109,49,105,116,85,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,81,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,81,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,52,102,43,50,110,122,75,55,69,49,113,78,77,67,47,84,119,56,89,67,85,99,105,75,73,80,114,50,115,118,103,48,66,97,73,112,10,83,115,100,115,70,49,122,43,113,88,66,107,111,88,118,98,52,71,70,79,73,51,79,70,56,101,116,113,73,116,89,81,108,43,97,101,97,120,100,67,116,43,76,86,78,43,72,78,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,120,111,50,49,55,65,76,52,66,57,118,84,116,121,89,106,10,83,78,69,89,122,113,75,72,104,76,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,50,85,121,85,118,115,103,111,104,68,111,116,43,56,98,107,98,119,107,70,79,100,113,76,104,79,69,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,104,84,78,51,112,80,71,52,121,106,67,10,112,81,50,101,87,99,109,105,74,67,74,71,100,115,74,75,101,55,87,47,120,103,79,72,112,55,102,109,99,67,85,67,73,68,107,78,110,106,49,120,66,105,73,99,110,119,69,57,109,57,52,54,79,108,110,57,111,70,87,43,43,83,56,48,10,86,73,68,71,68,74,79,51,122,72,43,56,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,123,21,5,121,210,99,16,71,133,66,112,12,225,21,209,104,197,24,123,115,135,29,125,65,219,102,68,75,137,60,65,37,2,32,106,75,75,13,28,42,164,115,100,190,5,103,15,33,38,255,178,185,232,99,61,128,90,234,96,4,4,154,227,203,81,121]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,99,109,90,67,52,83,72,84,120,48,83,108,70,110,86,55,117,75,80,119,122,52,54,101,113,65,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,48,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,48,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,119,111,111,71,82,108,48,103,104,112,47,48,114,108,66,76,56,104,90,110,122,121,114,70,53,114,109,101,76,113,10,51,81,116,86,102,110,82,112,120,99,106,73,77,109,43,78,73,115,77,67,98,80,118,109,115,89,53,75,48,78,98,107,52,99,116,71,77,80,108,81,105,77,48,112,121,86,57,50,114,111,50,113,67,114,87,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,71,47,77,53,66,83,121,102,49,69,102,10,103,103,83,69,47,54,72,102,70,53,107,84,52,118,87,112,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,52,55,48,98,72,80,48,85,75,110,72,82,111,53,82,77,122,114,106,121,111,81,89,117,106,86,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,121,74,107,74,78,10,50,47,86,57,117,81,97,113,102,113,118,110,104,57,98,85,67,122,90,97,68,43,110,71,78,50,90,72,47,52,119,68,53,87,116,85,90,81,73,103,78,83,112,76,103,53,118,78,76,67,107,48,53,106,100,79,84,79,99,74,70,84,98,97,10,54,57,113,105,68,52,70,117,99,52,78,97,76,89,84,113,76,56,52,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,2,198,89,185,169,50,43,150,229,248,192,58,168,106,9,57,132,57,186,18,2,10,26,205,69,26,150,108,219,27,13,111,2,32,124,223,132,36,205,218,69,183,160,47,145,129,58,134,12,32,178,128,27,44,27,40,73,224,56,158,61,176,91,130,249,168]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('c759fde0301efb2d18021a957981fe0b16333c4a2b7820fdd4042d3e24bd7c26', '187,106,234,209,167,195,214,101,17,251,119,44,10,145,171,187,127,194,148,113,193,58,166,166,229,205,214,230,177,123,226,248', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,102,70,90,47,121,71,54,107,69,103,89,81,109,87,88,52,79,51,120,122,82,116,110,82,66,117,99,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,48,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,48,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,48,48,119,57,71,48,82,109,100,105,66,100,76,53,73,67,54,119,116,87,100,109,55,49,10,47,112,77,54,105,107,65,114,119,47,57,103,86,86,110,83,115,112,106,79,43,68,89,57,97,74,48,98,113,88,49,117,100,51,55,70,75,101,54,71,85,55,50,118,111,109,122,70,87,70,73,84,103,121,120,101,83,89,79,52,68,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,106,82,110,76,10,104,90,82,89,104,119,89,54,120,113,89,84,74,121,104,116,100,119,73,75,69,85,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,98,106,118,82,115,99,47,82,81,113,99,100,71,106,108,69,122,79,117,80,75,104,66,105,10,54,78,85,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,84,70,108,77,68,65,49,90,109,69,52,89,106,89,52,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,86,50,82,77,84,67,10,66,86,47,102,102,49,67,90,72,103,106,109,117,97,47,84,97,78,77,84,75,43,53,98,49,99,53,52,75,80,118,66,70,107,84,74,65,105,65,76,70,111,50,57,87,72,116,78,86,57,120,56,72,85,68,112,67,53,105,55,112,112,75,121,10,104,52,70,86,85,117,120,116,50,111,55,111,120,78,47,88,79,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[60,216,190,94,76,25,241,201,248,1,146,165,20,240,189,232,39,26,164,222,184,209,199,41]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[234,74,231,243,176,188,17,66,125,48,84,122,33,218,59,138,228,169,231,3,255,135,136,205,5,7,206,119,222,113,135,33]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,75,43,81,73,86,78,104,104,104,101,83,43,115,107,54,77,87,112,51,52,120,97,109,49,105,116,85,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,81,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,81,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,52,102,43,50,110,122,75,55,69,49,113,78,77,67,47,84,119,56,89,67,85,99,105,75,73,80,114,50,115,118,103,48,66,97,73,112,10,83,115,100,115,70,49,122,43,113,88,66,107,111,88,118,98,52,71,70,79,73,51,79,70,56,101,116,113,73,116,89,81,108,43,97,101,97,120,100,67,116,43,76,86,78,43,72,78,54,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,120,111,50,49,55,65,76,52,66,57,118,84,116,121,89,106,10,83,78,69,89,122,113,75,72,104,76,77,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,50,85,121,85,118,115,103,111,104,68,111,116,43,56,98,107,98,119,107,70,79,100,113,76,104,79,69,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,104,84,78,51,112,80,71,52,121,106,67,10,112,81,50,101,87,99,109,105,74,67,74,71,100,115,74,75,101,55,87,47,120,103,79,72,112,55,102,109,99,67,85,67,73,68,107,78,110,106,49,120,66,105,73,99,110,119,69,57,109,57,52,54,79,108,110,57,111,70,87,43,43,83,56,48,10,86,73,68,71,68,74,79,51,122,72,43,56,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,213,229,186,80,50,15,95,55,107,45,149,150,82,151,111,144,243,236,35,132,251,141,138,159,208,65,200,206,254,115,176,140,2,32,32,98,48,178,92,215,3,29,221,8,156,46,222,0,40,72,10,168,244,131,183,89,225,156,63,10,117,0,66,222,192,97]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,99,109,90,67,52,83,72,84,120,48,83,108,70,110,86,55,117,75,80,119,122,52,54,101,113,65,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,48,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,48,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,119,111,111,71,82,108,48,103,104,112,47,48,114,108,66,76,56,104,90,110,122,121,114,70,53,114,109,101,76,113,10,51,81,116,86,102,110,82,112,120,99,106,73,77,109,43,78,73,115,77,67,98,80,118,109,115,89,53,75,48,78,98,107,52,99,116,71,77,80,108,81,105,77,48,112,121,86,57,50,114,111,50,113,67,114,87,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,71,47,77,53,66,83,121,102,49,69,102,10,103,103,83,69,47,54,72,102,70,53,107,84,52,118,87,112,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,52,55,48,98,72,80,48,85,75,110,72,82,111,53,82,77,122,114,106,121,111,81,89,117,106,86,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,121,74,107,74,78,10,50,47,86,57,117,81,97,113,102,113,118,110,104,57,98,85,67,122,90,97,68,43,110,71,78,50,90,72,47,52,119,68,53,87,116,85,90,81,73,103,78,83,112,76,103,53,118,78,76,67,107,48,53,106,100,79,84,79,99,74,70,84,98,97,10,54,57,113,105,68,52,70,117,99,52,78,97,76,89,84,113,76,56,52,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,1,130,98,92,135,181,154,156,95,23,128,233,44,72,6,59,33,99,99,135,66,198,115,61,181,90,208,243,182,69,17,16,2,32,122,130,255,183,138,9,114,94,126,152,11,160,59,198,235,35,116,60,239,45,148,19,132,139,241,149,184,112,5,79,29,106]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('ad9b02b1626a89739083be36fa77b831112b50da9bacf39efdf8fa0fb2215127', '206,19,251,89,135,215,185,113,240,59,88,202,186,243,40,237,149,132,173,194,10,20,222,220,133,207,92,120,113,99,22,127', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,70,81,120,85,108,54,71,103,106,108,48,65,68,80,88,56,65,85,55,50,47,115,118,113,75,54,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,85,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,85,49,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,48,83,56,67,51,54,74,66,57,121,48,104,72,101,83,116,72,74,76,87,120,86,111,122,112,112,76,75,99,10,86,89,89,105,52,112,83,84,103,54,110,103,121,74,48,106,80,71,55,70,112,115,70,52,78,51,52,114,78,65,82,76,83,86,120,86,110,68,106,112,73,113,66,89,57,103,104,102,118,48,122,69,89,57,119,69,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,57,75,99,65,79,118,115,89,118,10,78,90,87,47,117,75,66,51,73,118,106,103,86,105,111,104,115,122,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,83,54,100,70,69,80,85,80,105,112,97,101,116,102,55,109,54,103,66,82,119,77,43,76,85,103,109,84,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,122,90,68,89,49,77,106,65,121,78,106,108,104,90,68,89,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,69,66,65,65,107,81,88,98,47,121,99,115,10,89,68,119,79,103,97,113,120,99,99,101,117,111,117,102,53,66,119,74,107,98,104,74,76,73,111,74,110,43,51,56,67,73,68,47,68,54,112,79,69,112,88,98,43,102,85,43,79,81,108,49,121,116,106,122,117,49,87,65,111,89,103,88,113,10,90,85,121,112,98,72,73,73,99,52,68,43,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[186,10,31,208,36,144,228,168,210,233,90,61,131,108,112,45,150,75,108,171,181,81,22,70]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[55,83,109,245,230,191,67,244,122,56,255,159,79,223,239,239,132,145,167,137,228,65,152,14,75,43,143,160,140,3,217,242]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,87,65,55,121,101,49,114,72,55,48,90,54,116,117,81,72,69,76,54,80,84,77,65,47,51,103,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,49,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,49,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,67,51,78,118,122,66,49,77,86,108,122,77,52,53,121,69,101,80,83,112,50,81,49,55,111,68,89,86,70,107,10,74,107,89,115,86,122,51,47,82,55,73,115,102,113,48,100,104,70,103,77,106,106,57,54,79,80,87,111,109,73,78,86,57,121,54,75,111,80,115,86,68,54,110,52,82,79,119,81,79,109,116,120,109,80,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,75,99,80,121,55,73,98,56,76,111,103,10,56,101,76,76,116,102,78,109,115,109,85,100,108,76,100,97,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,70,66,114,57,116,67,114,114,74,104,73,105,73,121,118,114,66,49,72,119,120,53,99,98,66,116,117,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,118,108,108,43,77,10,83,115,48,89,47,67,49,79,88,102,102,43,104,67,57,99,88,101,103,99,105,103,106,86,81,120,71,75,72,82,79,109,77,75,116,99,72,119,73,103,77,106,69,80,74,78,43,67,103,115,66,79,101,80,55,73,108,51,97,122,114,122,52,98,10,65,75,113,81,100,104,48,106,114,69,70,67,75,97,68,68,104,88,119,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,107,74,74,255,42,169,251,118,219,159,9,188,210,210,62,237,9,186,101,178,41,153,131,249,172,100,32,91,146,149,168,40,2,32,40,195,149,251,160,229,32,84,138,204,236,93,163,29,152,78,202,208,206,184,135,57,49,171,133,254,244,243,199,112,118,124]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,83,82,52,54,79,56,85,73,79,121,109,97,57,83,88,110,49,104,120,98,82,85,53,97,47,73,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,85,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,85,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,43,51,103,72,88,54,97,90,84,50,117,65,70,52,122,56,88,57,71,88,107,107,51,90,83,52,115,109,82,103,74,74,83,48,74,55,10,108,72,68,80,47,88,77,81,113,47,76,115,73,55,70,101,108,56,65,78,84,82,49,86,70,82,51,49,70,119,98,84,73,85,71,52,90,73,115,116,72,121,56,85,82,56,98,66,98,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,74,51,76,115,71,70,53,65,68,48,71,79,69,106,71,97,10,116,89,57,114,51,117,115,47,69,70,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,110,82,82,68,49,68,52,113,87,110,114,88,43,53,117,111,65,85,99,68,80,105,49,73,74,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,75,52,107,110,73,117,107,76,78,97,117,74,10,109,100,49,66,110,50,79,49,122,50,103,110,104,84,105,98,112,53,120,55,101,51,121,53,121,118,111,53,101,69,107,67,73,65,102,67,104,70,120,57,52,82,121,56,65,78,122,76,85,99,84,99,97,78,107,119,67,109,48,106,101,48,43,103,10,106,85,71,104,106,72,104,99,65,112,82,50,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,58,192,93,42,76,126,158,225,222,114,129,94,174,181,121,45,74,98,245,15,19,39,37,193,235,39,85,47,112,76,152,113,2,32,105,19,85,192,95,181,235,116,83,140,99,166,85,187,224,207,201,49,131,115,93,76,35,242,224,45,174,159,219,76,205,161]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('6f0599ab20e9f1a840af7249d86a9684a0f8ed8d8041ead49e14a116f0a329c8', '75,21,47,173,99,214,172,39,185,125,172,197,234,3,15,72,6,240,123,88,242,75,186,159,56,227,67,171,64,37,99,85', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,103,83,102,79,77,116,73,100,118,51,83,122,53,121,77,51,104,107,110,56,67,82,78,110,87,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,49,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,49,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,121,71,54,105,54,113,51,101,53,107,84,101,82,83,54,122,78,116,70,112,90,73,108,10,52,122,90,67,99,112,89,112,89,113,99,89,108,118,106,103,52,112,68,90,57,80,65,99,51,106,73,72,69,68,118,86,70,103,113,88,86,85,120,81,78,104,66,65,84,54,43,111,67,80,121,54,56,100,87,98,114,81,65,108,69,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,81,67,85,108,10,70,105,120,84,43,72,110,43,110,116,86,53,50,65,114,73,121,114,103,55,104,54,81,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,71,118,50,48,75,117,115,109,69,105,73,106,75,43,115,72,85,102,68,72,108,120,115,10,71,50,52,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,50,81,50,78,84,73,119,77,106,89,53,89,87,81,50,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,65,110,99,99,72,65,111,10,111,90,55,118,84,90,83,83,43,48,103,77,70,90,83,117,43,52,115,53,49,120,116,78,78,43,97,69,53,67,85,120,66,85,119,72,65,105,65,113,50,102,89,86,99,101,52,87,65,110,115,48,76,122,82,89,73,116,109,84,102,75,67,111,10,117,82,57,112,66,48,67,108,120,72,56,85,102,99,105,49,113,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[20,241,236,147,230,210,156,87,140,20,89,130,203,13,68,158,168,173,74,153,78,131,125,39]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[133,233,243,239,217,216,213,205,31,79,55,190,218,131,48,211,155,107,242,208,5,127,233,105,24,45,111,77,54,239,193,112]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,83,82,52,54,79,56,85,73,79,121,109,97,57,83,88,110,49,104,120,98,82,85,53,97,47,73,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,85,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,85,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,43,51,103,72,88,54,97,90,84,50,117,65,70,52,122,56,88,57,71,88,107,107,51,90,83,52,115,109,82,103,74,74,83,48,74,55,10,108,72,68,80,47,88,77,81,113,47,76,115,73,55,70,101,108,56,65,78,84,82,49,86,70,82,51,49,70,119,98,84,73,85,71,52,90,73,115,116,72,121,56,85,82,56,98,66,98,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,74,51,76,115,71,70,53,65,68,48,71,79,69,106,71,97,10,116,89,57,114,51,117,115,47,69,70,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,110,82,82,68,49,68,52,113,87,110,114,88,43,53,117,111,65,85,99,68,80,105,49,73,74,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,75,52,107,110,73,117,107,76,78,97,117,74,10,109,100,49,66,110,50,79,49,122,50,103,110,104,84,105,98,112,53,120,55,101,51,121,53,121,118,111,53,101,69,107,67,73,65,102,67,104,70,120,57,52,82,121,56,65,78,122,76,85,99,84,99,97,78,107,119,67,109,48,106,101,48,43,103,10,106,85,71,104,106,72,104,99,65,112,82,50,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,1,153,163,50,155,28,128,86,243,36,174,85,198,151,16,227,159,8,125,244,97,92,79,41,2,72,11,151,235,193,6,227,2,32,32,37,11,173,254,254,99,19,19,185,44,191,46,168,189,146,170,77,251,172,127,183,213,206,20,171,2,248,61,228,102,4]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,87,65,55,121,101,49,114,72,55,48,90,54,116,117,81,72,69,76,54,80,84,77,65,47,51,103,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,49,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,49,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,67,51,78,118,122,66,49,77,86,108,122,77,52,53,121,69,101,80,83,112,50,81,49,55,111,68,89,86,70,107,10,74,107,89,115,86,122,51,47,82,55,73,115,102,113,48,100,104,70,103,77,106,106,57,54,79,80,87,111,109,73,78,86,57,121,54,75,111,80,115,86,68,54,110,52,82,79,119,81,79,109,116,120,109,80,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,75,99,80,121,55,73,98,56,76,111,103,10,56,101,76,76,116,102,78,109,115,109,85,100,108,76,100,97,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,70,66,114,57,116,67,114,114,74,104,73,105,73,121,118,114,66,49,72,119,120,53,99,98,66,116,117,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,118,108,108,43,77,10,83,115,48,89,47,67,49,79,88,102,102,43,104,67,57,99,88,101,103,99,105,103,106,86,81,120,71,75,72,82,79,109,77,75,116,99,72,119,73,103,77,106,69,80,74,78,43,67,103,115,66,79,101,80,55,73,108,51,97,122,114,122,52,98,10,65,75,113,81,100,104,48,106,114,69,70,67,75,97,68,68,104,88,119,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,76,187,228,121,18,29,52,72,31,16,239,117,207,61,131,212,85,114,184,58,182,157,201,34,175,100,86,221,132,13,101,16,2,32,102,105,143,12,228,56,37,18,239,151,233,208,37,224,74,147,155,7,29,171,95,145,86,49,14,56,76,81,49,39,146,160]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('8efc8dc74b1402d04ffa9a29f33b49c9cfe7ea6a720dffd31f716edfc3341255', '253,116,251,61,44,102,208,229,87,47,86,191,43,232,32,224,254,160,2,13,42,69,162,153,20,126,45,170,137,228,113,17', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,103,83,102,79,77,116,73,100,118,51,83,122,53,121,77,51,104,107,110,56,67,82,78,110,87,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,49,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,49,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,121,71,54,105,54,113,51,101,53,107,84,101,82,83,54,122,78,116,70,112,90,73,108,10,52,122,90,67,99,112,89,112,89,113,99,89,108,118,106,103,52,112,68,90,57,80,65,99,51,106,73,72,69,68,118,86,70,103,113,88,86,85,120,81,78,104,66,65,84,54,43,111,67,80,121,54,56,100,87,98,114,81,65,108,69,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,81,67,85,108,10,70,105,120,84,43,72,110,43,110,116,86,53,50,65,114,73,121,114,103,55,104,54,81,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,71,118,50,48,75,117,115,109,69,105,73,106,75,43,115,72,85,102,68,72,108,120,115,10,71,50,52,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,50,81,50,78,84,73,119,77,106,89,53,89,87,81,50,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,65,110,99,99,72,65,111,10,111,90,55,118,84,90,83,83,43,48,103,77,70,90,83,117,43,52,115,53,49,120,116,78,78,43,97,69,53,67,85,120,66,85,119,72,65,105,65,113,50,102,89,86,99,101,52,87,65,110,115,48,76,122,82,89,73,116,109,84,102,75,67,111,10,117,82,57,112,66,48,67,108,120,72,56,85,102,99,105,49,113,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[88,185,168,35,173,224,233,217,228,116,205,78,65,235,105,88,174,192,66,104,89,206,250,189]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[203,116,82,179,59,43,113,31,174,151,161,215,89,194,209,131,187,97,104,25,188,103,240,86,18,36,19,103,208,250,99,205]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,87,65,55,121,101,49,114,72,55,48,90,54,116,117,81,72,69,76,54,80,84,77,65,47,51,103,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,85,49,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,85,49,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,67,51,78,118,122,66,49,77,86,108,122,77,52,53,121,69,101,80,83,112,50,81,49,55,111,68,89,86,70,107,10,74,107,89,115,86,122,51,47,82,55,73,115,102,113,48,100,104,70,103,77,106,106,57,54,79,80,87,111,109,73,78,86,57,121,54,75,111,80,115,86,68,54,110,52,82,79,119,81,79,109,116,120,109,80,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,75,99,80,121,55,73,98,56,76,111,103,10,56,101,76,76,116,102,78,109,115,109,85,100,108,76,100,97,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,70,66,114,57,116,67,114,114,74,104,73,105,73,121,118,114,66,49,72,119,120,53,99,98,66,116,117,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,118,108,108,43,77,10,83,115,48,89,47,67,49,79,88,102,102,43,104,67,57,99,88,101,103,99,105,103,106,86,81,120,71,75,72,82,79,109,77,75,116,99,72,119,73,103,77,106,69,80,74,78,43,67,103,115,66,79,101,80,55,73,108,51,97,122,114,122,52,98,10,65,75,113,81,100,104,48,106,114,69,70,67,75,97,68,68,104,88,119,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,167,110,185,37,118,61,21,247,176,145,124,33,165,50,83,95,116,38,220,14,30,55,72,17,222,132,121,137,89,104,200,85,2,32,92,132,83,142,228,188,62,165,107,159,141,225,39,240,49,19,155,138,13,112,52,111,89,205,102,21,212,198,52,27,0,31]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,83,82,52,54,79,56,85,73,79,121,109,97,57,83,88,110,49,104,120,98,82,85,53,97,47,73,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,84,85,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,84,85,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,43,51,103,72,88,54,97,90,84,50,117,65,70,52,122,56,88,57,71,88,107,107,51,90,83,52,115,109,82,103,74,74,83,48,74,55,10,108,72,68,80,47,88,77,81,113,47,76,115,73,55,70,101,108,56,65,78,84,82,49,86,70,82,51,49,70,119,98,84,73,85,71,52,90,73,115,116,72,121,56,85,82,56,98,66,98,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,74,51,76,115,71,70,53,65,68,48,71,79,69,106,71,97,10,116,89,57,114,51,117,115,47,69,70,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,117,110,82,82,68,49,68,52,113,87,110,114,88,43,53,117,111,65,85,99,68,80,105,49,73,74,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,75,52,107,110,73,117,107,76,78,97,117,74,10,109,100,49,66,110,50,79,49,122,50,103,110,104,84,105,98,112,53,120,55,101,51,121,53,121,118,111,53,101,69,107,67,73,65,102,67,104,70,120,57,52,82,121,56,65,78,122,76,85,99,84,99,97,78,107,119,67,109,48,106,101,48,43,103,10,106,85,71,104,106,72,104,99,65,112,82,50,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,78,47,232,218,47,180,160,119,150,220,225,224,93,175,197,56,93,216,34,29,138,12,221,181,65,67,72,132,55,230,18,224,2,32,50,129,93,24,152,23,131,216,102,36,25,255,165,61,147,63,68,230,222,135,219,232,91,71,69,19,29,218,139,7,243,64]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('4d7346fa6bd5bf0ca5d04aa277472d5c2f43d5ab5808111a9430f432dedbb8a9', '90,181,40,138,169,142,84,242,225,68,195,99,179,231,2,73,210,226,204,54,139,133,25,244,124,60,18,171,8,186,214,207', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,102,119,105,47,78,122,107,84,117,120,79,84,111,75,111,117,103,47,103,89,87,89,75,82,71,100,77,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,65,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,65,49,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,107,53,101,72,113,90,118,56,97,108,90,108,81,50,108,47,120,74,80,113,71,100,89,117,69,119,77,89,103,10,68,108,88,85,119,85,121,83,80,74,54,116,80,121,75,90,103,82,77,56,112,56,69,102,65,99,109,56,52,122,50,51,48,112,117,80,114,65,71,65,72,104,72,84,110,111,88,78,57,103,75,88,101,120,111,79,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,81,106,75,104,119,55,113,88,55,65,10,97,121,90,98,117,104,57,52,101,51,53,73,109,88,51,80,89,68,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,84,83,122,119,114,117,102,68,49,118,113,65,105,72,88,75,84,85,98,113,68,73,108,73,103,69,89,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,49,78,87,81,121,89,106,81,119,78,122,81,48,89,106,85,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,75,86,74,69,88,66,43,67,98,105,55,10,79,117,99,71,81,121,108,72,50,118,65,116,51,43,114,81,47,107,50,85,83,110,80,43,120,78,103,84,88,97,109,86,65,105,66,50,71,74,80,114,67,47,106,80,88,90,115,56,116,110,90,80,73,117,119,109,82,119,76,109,87,84,79,112,10,77,109,78,49,87,114,48,122,121,73,81,89,77,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[176,29,122,10,154,229,52,112,60,241,196,130,129,52,179,100,155,60,238,160,31,220,157,196]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[176,100,126,88,53,172,216,171,98,164,21,98,75,54,25,97,75,35,140,208,22,41,147,91,116,213,202,54,48,143,129,169]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,78,102,85,90,97,51,85,113,73,118,89,104,98,112,107,86,103,68,53,49,120,90,106,52,80,117,99,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,119,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,119,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,112,76,111,81,121,56,50,74,87,103,106,72,65,50,99,43,111,108,116,77,65,55,103,57,122,54,100,98,86,98,10,78,85,72,81,53,106,57,54,82,109,118,112,111,77,69,48,80,49,103,79,121,55,47,122,89,114,47,119,43,51,48,116,88,49,56,56,109,100,114,47,78,119,105,101,48,71,105,85,47,103,90,116,75,90,101,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,76,70,104,48,121,85,105,88,88,72,113,10,74,76,50,49,99,85,104,67,68,82,107,53,49,110,55,75,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,73,51,54,83,51,109,101,50,101,105,108,86,113,111,121,85,86,49,97,72,77,83,103,109,82,75,88,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,121,122,119,101,110,10,106,107,56,88,100,85,48,73,49,116,71,77,69,112,107,79,66,48,107,117,70,85,74,51,80,86,52,50,114,103,120,76,66,118,114,76,70,119,73,103,83,79,105,120,112,111,90,50,120,79,106,106,113,100,103,55,104,84,82,75,65,71,78,90,10,102,77,101,50,98,51,97,68,55,65,108,50,90,50,82,66,72,66,103,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,212,211,63,204,173,95,188,129,38,237,3,39,25,113,54,18,149,253,56,55,205,107,185,164,112,4,201,195,68,37,162,20,2,32,110,40,133,88,238,201,10,144,70,30,169,124,47,247,153,163,134,229,236,86,59,231,124,70,133,253,152,144,106,108,39,202]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,119,118,74,69,115,54,76,50,48,55,102,68,70,84,98,84,97,105,102,70,86,112,119,122,109,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,65,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,65,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,78,104,43,75,48,83,100,81,57,97,69,111,43,86,74,117,86,54,73,49,73,113,118,55,83,69,48,100,115,55,66,75,87,73,79,90,10,81,108,76,65,55,106,104,66,56,57,107,52,73,80,54,103,76,115,55,74,52,112,47,104,105,101,113,67,56,97,73,74,83,71,106,50,79,66,78,71,88,88,107,88,103,54,101,120,120,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,88,48,116,122,117,87,65,79,68,84,51,75,85,57,105,10,82,68,70,65,109,116,76,65,52,111,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,48,115,56,75,55,110,119,57,98,54,103,73,104,49,121,107,49,71,54,103,121,74,83,73,66,71,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,112,85,105,43,122,106,56,107,73,107,72,10,66,102,109,69,85,101,74,114,54,115,49,103,84,122,83,43,49,49,66,57,98,80,103,47,51,83,72,101,110,98,48,67,73,70,107,99,116,115,101,116,114,80,83,104,50,120,47,103,115,79,50,50,81,65,74,86,83,77,115,87,74,65,110,66,10,110,69,89,71,77,107,117,122,50,78,118,84,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,231,30,188,221,203,230,176,192,172,86,86,82,125,100,156,103,57,248,150,145,96,163,195,233,90,56,213,95,125,248,2,255,2,32,122,91,243,71,26,188,156,16,108,51,106,87,134,90,177,151,47,245,199,57,213,19,237,110,34,21,78,79,0,0,146,123]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('4e6282d1d537d8420e9d407a3d063fd82bbb447ffe9e11d335728eefa87c2a79', '177,102,216,90,5,150,45,77,111,206,167,226,123,157,71,177,6,255,65,133,228,196,208,65,124,143,28,39,229,89,96,37', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,84,121,57,74,68,103,84,107,52,83,97,66,43,103,79,52,78,51,113,49,98,110,75,75,67,115,77,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,119,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,119,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,74,98,72,67,51,102,43,100,102,48,108,82,65,105,53,88,114,109,65,82,104,55,89,106,10,119,71,72,81,100,101,97,117,100,106,107,122,71,51,85,119,89,108,57,76,120,49,85,100,99,115,106,119,49,48,74,55,116,100,73,121,73,110,111,67,72,76,49,120,43,54,53,104,98,114,57,102,47,70,43,80,86,70,77,82,105,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,65,116,107,76,10,85,90,76,118,112,82,53,88,71,84,114,65,111,89,74,54,98,69,90,83,121,54,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,106,102,112,76,101,90,55,90,54,75,86,87,113,106,74,82,88,86,111,99,120,75,67,90,10,69,112,99,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,84,86,107,77,109,73,48,77,68,99,48,78,71,73,49,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,67,43,84,100,119,98,48,10,65,71,90,108,43,121,119,90,90,80,112,85,50,70,87,51,99,99,70,116,105,86,68,87,113,82,111,51,52,117,105,56,88,121,98,54,65,105,65,121,88,47,112,98,90,86,116,73,89,101,108,103,43,71,54,102,56,47,48,71,68,70,57,80,10,86,111,107,75,73,114,74,118,113,79,76,57,87,86,122,76,83,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[169,94,176,186,75,230,45,209,139,45,91,227,112,125,162,33,171,136,229,8,150,114,49,222]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[133,126,160,174,134,248,205,156,118,176,239,170,111,195,76,210,5,156,61,157,96,168,104,237,3,97,18,159,152,255,16,40]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,119,118,74,69,115,54,76,50,48,55,102,68,70,84,98,84,97,105,102,70,86,112,119,122,109,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,65,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,65,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,78,104,43,75,48,83,100,81,57,97,69,111,43,86,74,117,86,54,73,49,73,113,118,55,83,69,48,100,115,55,66,75,87,73,79,90,10,81,108,76,65,55,106,104,66,56,57,107,52,73,80,54,103,76,115,55,74,52,112,47,104,105,101,113,67,56,97,73,74,83,71,106,50,79,66,78,71,88,88,107,88,103,54,101,120,120,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,88,48,116,122,117,87,65,79,68,84,51,75,85,57,105,10,82,68,70,65,109,116,76,65,52,111,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,48,115,56,75,55,110,119,57,98,54,103,73,104,49,121,107,49,71,54,103,121,74,83,73,66,71,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,112,85,105,43,122,106,56,107,73,107,72,10,66,102,109,69,85,101,74,114,54,115,49,103,84,122,83,43,49,49,66,57,98,80,103,47,51,83,72,101,110,98,48,67,73,70,107,99,116,115,101,116,114,80,83,104,50,120,47,103,115,79,50,50,81,65,74,86,83,77,115,87,74,65,110,66,10,110,69,89,71,77,107,117,122,50,78,118,84,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,245,105,21,48,74,155,51,251,221,236,211,235,90,130,78,71,1,8,179,207,146,150,148,118,42,210,55,21,115,141,5,50,2,32,22,103,52,135,145,48,12,238,118,84,208,177,8,185,241,122,120,35,72,184,86,87,91,68,179,14,131,102,154,117,170,8]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,78,102,85,90,97,51,85,113,73,118,89,104,98,112,107,86,103,68,53,49,120,90,106,52,80,117,99,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,119,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,119,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,112,76,111,81,121,56,50,74,87,103,106,72,65,50,99,43,111,108,116,77,65,55,103,57,122,54,100,98,86,98,10,78,85,72,81,53,106,57,54,82,109,118,112,111,77,69,48,80,49,103,79,121,55,47,122,89,114,47,119,43,51,48,116,88,49,56,56,109,100,114,47,78,119,105,101,48,71,105,85,47,103,90,116,75,90,101,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,76,70,104,48,121,85,105,88,88,72,113,10,74,76,50,49,99,85,104,67,68,82,107,53,49,110,55,75,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,73,51,54,83,51,109,101,50,101,105,108,86,113,111,121,85,86,49,97,72,77,83,103,109,82,75,88,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,121,122,119,101,110,10,106,107,56,88,100,85,48,73,49,116,71,77,69,112,107,79,66,48,107,117,70,85,74,51,80,86,52,50,114,103,120,76,66,118,114,76,70,119,73,103,83,79,105,120,112,111,90,50,120,79,106,106,113,100,103,55,104,84,82,75,65,71,78,90,10,102,77,101,50,98,51,97,68,55,65,108,50,90,50,82,66,72,66,103,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,141,91,189,118,43,158,49,248,60,127,127,195,26,135,193,75,161,252,175,238,115,94,174,28,79,167,167,219,97,239,62,125,2,32,82,64,31,113,200,255,249,200,234,50,46,122,213,115,16,234,236,24,81,96,219,59,14,210,100,216,32,150,196,216,218,154]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('eb2ed2bcf203956f71e56b63cb46ab00d73c9865bb45f08301caed875b16e93d', '106,19,185,31,156,15,184,90,20,40,233,86,86,23,72,255,101,30,95,154,198,226,55,108,227,31,37,38,181,44,229,105', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,84,121,57,74,68,103,84,107,52,83,97,66,43,103,79,52,78,51,113,49,98,110,75,75,67,115,77,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,119,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,119,78,84,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,74,98,72,67,51,102,43,100,102,48,108,82,65,105,53,88,114,109,65,82,104,55,89,106,10,119,71,72,81,100,101,97,117,100,106,107,122,71,51,85,119,89,108,57,76,120,49,85,100,99,115,106,119,49,48,74,55,116,100,73,121,73,110,111,67,72,76,49,120,43,54,53,104,98,114,57,102,47,70,43,80,86,70,77,82,105,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,65,116,107,76,10,85,90,76,118,112,82,53,88,71,84,114,65,111,89,74,54,98,69,90,83,121,54,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,106,102,112,76,101,90,55,90,54,75,86,87,113,106,74,82,88,86,111,99,120,75,67,90,10,69,112,99,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,84,86,107,77,109,73,48,77,68,99,48,78,71,73,49,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,67,43,84,100,119,98,48,10,65,71,90,108,43,121,119,90,90,80,112,85,50,70,87,51,99,99,70,116,105,86,68,87,113,82,111,51,52,117,105,56,88,121,98,54,65,105,65,121,88,47,112,98,90,86,116,73,89,101,108,103,43,71,54,102,56,47,48,71,68,70,57,80,10,86,111,107,75,73,114,74,118,113,79,76,57,87,86,122,76,83,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[218,195,223,176,57,205,140,156,172,154,75,27,99,177,112,53,7,88,16,163,233,253,246,203]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[7,128,110,94,145,187,186,235,201,241,131,161,68,37,96,231,39,114,6,229,159,20,171,81,96,42,206,185,16,161,206,212]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,119,118,74,69,115,54,76,50,48,55,102,68,70,84,98,84,97,105,102,70,86,112,119,122,109,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,65,119,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,65,49,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,78,104,43,75,48,83,100,81,57,97,69,111,43,86,74,117,86,54,73,49,73,113,118,55,83,69,48,100,115,55,66,75,87,73,79,90,10,81,108,76,65,55,106,104,66,56,57,107,52,73,80,54,103,76,115,55,74,52,112,47,104,105,101,113,67,56,97,73,74,83,71,106,50,79,66,78,71,88,88,107,88,103,54,101,120,120,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,88,48,116,122,117,87,65,79,68,84,51,75,85,57,105,10,82,68,70,65,109,116,76,65,52,111,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,48,115,56,75,55,110,119,57,98,54,103,73,104,49,121,107,49,71,54,103,121,74,83,73,66,71,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,112,85,105,43,122,106,56,107,73,107,72,10,66,102,109,69,85,101,74,114,54,115,49,103,84,122,83,43,49,49,66,57,98,80,103,47,51,83,72,101,110,98,48,67,73,70,107,99,116,115,101,116,114,80,83,104,50,120,47,103,115,79,50,50,81,65,74,86,83,77,115,87,74,65,110,66,10,110,69,89,71,77,107,117,122,50,78,118,84,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,178,22,34,26,148,198,48,218,245,181,49,35,3,66,75,59,13,241,159,221,229,21,111,116,9,130,75,74,44,48,21,133,2,32,66,42,29,142,7,248,185,172,210,18,74,157,192,147,26,212,20,65,83,116,128,178,114,14,214,192,91,200,91,141,37,65]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,78,102,85,90,97,51,85,113,73,118,89,104,98,112,107,86,103,68,53,49,120,90,106,52,80,117,99,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,119,77,68,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,119,78,84,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,69,112,76,111,81,121,56,50,74,87,103,106,72,65,50,99,43,111,108,116,77,65,55,103,57,122,54,100,98,86,98,10,78,85,72,81,53,106,57,54,82,109,118,112,111,77,69,48,80,49,103,79,121,55,47,122,89,114,47,119,43,51,48,116,88,49,56,56,109,100,114,47,78,119,105,101,48,71,105,85,47,103,90,116,75,90,101,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,76,70,104,48,121,85,105,88,88,72,113,10,74,76,50,49,99,85,104,67,68,82,107,53,49,110,55,75,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,73,51,54,83,51,109,101,50,101,105,108,86,113,111,121,85,86,49,97,72,77,83,103,109,82,75,88,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,121,122,119,101,110,10,106,107,56,88,100,85,48,73,49,116,71,77,69,112,107,79,66,48,107,117,70,85,74,51,80,86,52,50,114,103,120,76,66,118,114,76,70,119,73,103,83,79,105,120,112,111,90,50,120,79,106,106,113,100,103,55,104,84,82,75,65,71,78,90,10,102,77,101,50,98,51,97,68,55,65,108,50,90,50,82,66,72,66,103,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,168,164,183,222,238,244,47,194,108,231,147,24,239,163,3,29,150,2,244,239,198,85,155,3,127,221,69,254,64,120,37,96,2,32,100,219,158,201,202,81,41,198,95,214,87,246,243,1,5,206,29,144,175,214,239,63,38,11,134,223,57,14,99,238,150,218]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('f72813f4ee593d706b67fa549c8f9e1fb85e52476e89bf80208b19ee558ff34f', '232,76,91,45,159,117,241,190,186,73,172,229,24,129,30,8,124,254,173,238,189,160,24,131,62,116,195,243,73,77,61,198', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,85,107,47,53,55,115,77,52,111,68,120,89,52,103,78,116,105,71,106,102,86,56,54,67,78,118,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,77,122,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,77,52,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,84,120,78,117,76,66,114,68,106,114,106,121,103,47,102,104,51,70,83,106,85,102,72,50,48,52,122,80,68,85,10,69,103,84,72,107,57,68,112,90,90,88,83,103,120,82,116,78,50,88,88,78,121,112,78,72,50,70,98,120,119,71,102,115,114,86,76,97,100,90,121,49,103,113,65,111,106,43,87,82,66,88,120,98,99,85,105,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,69,83,72,47,119,87,66,48,109,10,78,89,49,85,47,122,65,120,51,65,89,103,55,119,104,52,121,68,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,81,82,113,117,67,69,84,79,102,66,89,83,52,103,78,71,65,87,73,83,106,101,75,84,56,121,104,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,120,105,77,122,85,49,89,122,70,105,78,84,89,121,78,122,69,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,87,69,106,49,112,83,86,121,53,107,72,67,10,100,55,107,65,83,98,83,50,110,103,88,53,50,51,54,122,73,69,105,83,47,85,51,108,50,86,81,107,87,77,111,67,73,67,69,75,103,65,57,90,49,111,109,90,48,102,51,88,104,65,119,111,72,97,102,118,119,74,108,88,118,83,56,112,10,66,69,65,54,119,48,116,66,78,86,121,117,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[144,79,96,176,2,78,87,210,176,95,105,218,169,21,127,44,151,107,103,24,99,176,156,158]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[180,96,149,100,67,244,151,251,117,90,97,4,20,12,219,178,15,106,67,109,107,115,226,227,182,88,67,132,220,65,234,13]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,77,81,114,48,121,70,72,79,55,71,122,80,116,111,101,116,104,79,71,54,73,78,103,103,118,51,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,122,77,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,122,79,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,69,75,65,86,118,53,88,114,111,81,69,90,89,65,119,65,105,78,78,54,78,47,69,79,76,111,65,97,107,10,65,52,86,56,98,87,98,119,67,114,48,115,84,87,43,55,87,51,70,114,116,88,88,103,78,43,112,67,71,54,119,69,84,73,68,77,111,57,76,101,84,43,85,53,56,106,97,54,80,72,56,53,98,75,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,110,77,82,108,85,103,101,100,48,84,10,114,85,105,98,89,118,118,49,88,99,111,81,100,57,110,79,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,107,86,56,83,102,76,101,118,83,73,51,113,121,74,118,66,75,105,117,107,71,88,106,52,99,105,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,121,47,69,48,83,67,10,98,79,104,80,113,97,69,68,87,103,98,52,108,89,119,108,100,121,102,101,86,74,52,97,69,120,74,121,111,47,50,71,107,73,110,75,65,105,65,48,113,77,117,56,111,105,119,53,76,53,66,43,80,69,106,82,87,57,81,88,117,89,66,120,10,82,97,97,68,88,103,72,52,110,76,87,55,110,65,68,68,72,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,173,86,147,221,13,145,115,122,126,18,134,208,59,148,238,194,250,249,169,66,140,107,34,216,47,47,143,222,155,202,101,250,2,32,87,216,47,203,227,200,42,197,242,71,18,76,184,197,137,241,94,198,181,205,225,232,50,72,16,42,223,152,133,82,169,181]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,72,102,75,99,109,73,78,73,89,52,66,110,100,115,78,78,115,51,102,104,74,72,48,121,43,117,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,77,122,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,77,52,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,105,47,53,52,51,83,67,71,72,73,110,100,67,57,66,97,67,102,115,49,70,82,81,49,117,53,115,52,122,105,97,48,102,43,109,110,10,100,69,54,70,77,109,79,69,109,81,49,107,89,115,102,86,114,78,90,97,102,120,88,86,80,74,106,111,83,66,79,57,116,122,108,109,84,86,112,81,109,70,85,69,53,82,101,100,83,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,53,86,81,118,103,106,43,77,47,110,65,43,51,110,50,84,10,82,109,82,78,68,109,116,67,109,122,115,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,69,97,114,103,104,69,122,110,119,87,69,117,73,68,82,103,70,105,69,111,51,105,107,47,77,111,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,73,69,72,117,87,68,69,71,55,81,75,57,10,119,90,49,55,110,54,110,76,111,90,109,100,67,81,85,109,72,103,119,54,110,53,114,114,106,66,119,56,89,116,69,67,73,67,121,90,101,101,108,115,69,116,53,66,118,104,72,66,79,103,99,55,67,52,80,89,78,65,114,70,107,108,84,97,10,57,87,82,69,110,86,81,48,48,117,122,43,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,194,99,185,209,58,122,151,40,204,166,254,196,153,114,87,37,23,164,88,55,247,152,183,110,133,233,61,82,239,30,123,20,2,32,83,243,248,205,43,90,222,39,17,142,180,203,44,209,30,248,9,111,13,73,254,151,221,2,56,161,227,45,120,80,211,71]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('e52348d2a80ff1b7e26dd2dd6c83a965dea83e95e83246531ccd5be48c956dbe', '130,150,28,104,60,222,226,46,255,143,99,146,95,60,22,153,244,174,55,237,197,189,249,190,231,182,242,86,120,109,27,186', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,88,104,118,110,85,102,79,120,70,90,76,48,83,107,72,82,77,65,43,108,122,57,43,107,69,79,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,122,77,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,122,79,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,73,81,112,52,103,51,73,110,66,50,113,98,72,111,88,69,75,117,43,49,88,55,101,104,10,83,100,50,49,56,74,51,52,80,103,82,70,68,51,56,115,56,74,120,109,112,55,47,77,119,87,80,104,117,120,110,114,81,106,69,72,98,102,109,73,57,116,55,113,84,72,98,74,101,111,99,51,68,47,122,66,118,116,103,84,119,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,72,71,68,119,10,47,119,85,86,122,120,48,78,80,112,80,114,100,110,69,50,81,86,122,65,56,118,115,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,97,82,88,120,74,56,116,54,57,73,106,101,114,73,109,56,69,113,75,54,81,90,101,80,10,104,121,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,89,106,77,49,78,87,77,120,89,106,85,50,77,106,99,120,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,117,81,51,56,48,10,73,76,87,49,49,55,70,73,52,73,52,110,117,86,115,87,80,53,120,49,120,78,67,102,71,71,87,48,57,119,113,52,73,43,118,122,79,119,73,103,70,119,75,119,118,74,57,86,89,52,47,115,57,102,81,78,72,57,85,48,88,68,97,76,10,43,109,102,88,77,109,73,105,114,84,80,79,108,97,78,90,53,76,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[243,184,201,122,28,23,26,146,91,139,129,128,205,28,231,228,250,20,49,101,204,74,95,230]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[234,24,92,20,26,94,77,84,13,34,152,153,29,198,157,220,131,167,64,4,59,223,8,99,139,178,45,254,142,220,102,231]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,77,81,114,48,121,70,72,79,55,71,122,80,116,111,101,116,104,79,71,54,73,78,103,103,118,51,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,122,77,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,122,79,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,69,75,65,86,118,53,88,114,111,81,69,90,89,65,119,65,105,78,78,54,78,47,69,79,76,111,65,97,107,10,65,52,86,56,98,87,98,119,67,114,48,115,84,87,43,55,87,51,70,114,116,88,88,103,78,43,112,67,71,54,119,69,84,73,68,77,111,57,76,101,84,43,85,53,56,106,97,54,80,72,56,53,98,75,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,110,77,82,108,85,103,101,100,48,84,10,114,85,105,98,89,118,118,49,88,99,111,81,100,57,110,79,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,107,86,56,83,102,76,101,118,83,73,51,113,121,74,118,66,75,105,117,107,71,88,106,52,99,105,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,121,47,69,48,83,67,10,98,79,104,80,113,97,69,68,87,103,98,52,108,89,119,108,100,121,102,101,86,74,52,97,69,120,74,121,111,47,50,71,107,73,110,75,65,105,65,48,113,77,117,56,111,105,119,53,76,53,66,43,80,69,106,82,87,57,81,88,117,89,66,120,10,82,97,97,68,88,103,72,52,110,76,87,55,110,65,68,68,72,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,110,109,231,152,155,167,55,202,141,158,61,150,14,217,87,120,159,36,13,203,192,126,239,11,223,130,162,15,238,243,255,102,2,32,75,8,202,215,15,187,190,15,0,81,241,152,108,210,95,181,226,179,96,87,213,93,84,188,184,185,52,93,196,237,120,244]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,72,102,75,99,109,73,78,73,89,52,66,110,100,115,78,78,115,51,102,104,74,72,48,121,43,117,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,77,122,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,77,52,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,105,47,53,52,51,83,67,71,72,73,110,100,67,57,66,97,67,102,115,49,70,82,81,49,117,53,115,52,122,105,97,48,102,43,109,110,10,100,69,54,70,77,109,79,69,109,81,49,107,89,115,102,86,114,78,90,97,102,120,88,86,80,74,106,111,83,66,79,57,116,122,108,109,84,86,112,81,109,70,85,69,53,82,101,100,83,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,53,86,81,118,103,106,43,77,47,110,65,43,51,110,50,84,10,82,109,82,78,68,109,116,67,109,122,115,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,69,97,114,103,104,69,122,110,119,87,69,117,73,68,82,103,70,105,69,111,51,105,107,47,77,111,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,73,69,72,117,87,68,69,71,55,81,75,57,10,119,90,49,55,110,54,110,76,111,90,109,100,67,81,85,109,72,103,119,54,110,53,114,114,106,66,119,56,89,116,69,67,73,67,121,90,101,101,108,115,69,116,53,66,118,104,72,66,79,103,99,55,67,52,80,89,78,65,114,70,107,108,84,97,10,57,87,82,69,110,86,81,48,48,117,122,43,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,204,94,194,83,46,217,22,210,230,192,6,231,47,84,37,221,130,149,209,232,0,123,40,111,103,214,239,206,148,49,227,28,2,32,116,254,255,152,199,171,115,162,39,44,14,25,83,148,4,146,32,43,24,150,53,98,255,38,191,38,163,231,166,211,129,153]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('4d38f2c49d156a5d78caf79b87a5abaf21b53c189fa66a9ddfc9535015b0c584', '51,71,223,226,162,23,53,18,24,33,145,204,101,3,143,114,9,190,113,66,1,211,163,149,81,127,95,143,194,246,74,232', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,88,104,118,110,85,102,79,120,70,90,76,48,83,107,72,82,77,65,43,108,122,57,43,107,69,79,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,122,77,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,122,79,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,73,81,112,52,103,51,73,110,66,50,113,98,72,111,88,69,75,117,43,49,88,55,101,104,10,83,100,50,49,56,74,51,52,80,103,82,70,68,51,56,115,56,74,120,109,112,55,47,77,119,87,80,104,117,120,110,114,81,106,69,72,98,102,109,73,57,116,55,113,84,72,98,74,101,111,99,51,68,47,122,66,118,116,103,84,119,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,72,71,68,119,10,47,119,85,86,122,120,48,78,80,112,80,114,100,110,69,50,81,86,122,65,56,118,115,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,97,82,88,120,74,56,116,54,57,73,106,101,114,73,109,56,69,113,75,54,81,90,101,80,10,104,121,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,89,106,77,49,78,87,77,120,89,106,85,50,77,106,99,120,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,117,81,51,56,48,10,73,76,87,49,49,55,70,73,52,73,52,110,117,86,115,87,80,53,120,49,120,78,67,102,71,71,87,48,57,119,113,52,73,43,118,122,79,119,73,103,70,119,75,119,118,74,57,86,89,52,47,115,57,102,81,78,72,57,85,48,88,68,97,76,10,43,109,102,88,77,109,73,105,114,84,80,79,108,97,78,90,53,76,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[194,87,117,111,207,101,149,70,129,241,122,61,81,53,201,141,240,111,63,108,61,81,162,23]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[251,134,192,172,17,160,47,62,194,231,201,29,245,205,128,29,119,229,95,14,64,96,254,84,10,229,10,85,91,76,224,129]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,77,81,114,48,121,70,72,79,55,71,122,80,116,111,101,116,104,79,71,54,73,78,103,103,118,51,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,122,77,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,122,79,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,69,75,65,86,118,53,88,114,111,81,69,90,89,65,119,65,105,78,78,54,78,47,69,79,76,111,65,97,107,10,65,52,86,56,98,87,98,119,67,114,48,115,84,87,43,55,87,51,70,114,116,88,88,103,78,43,112,67,71,54,119,69,84,73,68,77,111,57,76,101,84,43,85,53,56,106,97,54,80,72,56,53,98,75,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,110,77,82,108,85,103,101,100,48,84,10,114,85,105,98,89,118,118,49,88,99,111,81,100,57,110,79,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,107,86,56,83,102,76,101,118,83,73,51,113,121,74,118,66,75,105,117,107,71,88,106,52,99,105,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,121,47,69,48,83,67,10,98,79,104,80,113,97,69,68,87,103,98,52,108,89,119,108,100,121,102,101,86,74,52,97,69,120,74,121,111,47,50,71,107,73,110,75,65,105,65,48,113,77,117,56,111,105,119,53,76,53,66,43,80,69,106,82,87,57,81,88,117,89,66,120,10,82,97,97,68,88,103,72,52,110,76,87,55,110,65,68,68,72,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,131,89,226,139,108,253,62,124,248,28,246,210,33,23,2,106,165,197,89,154,244,152,0,106,76,37,192,10,206,62,167,154,2,32,126,160,108,167,82,186,241,96,152,86,6,175,223,80,148,217,143,244,67,194,253,142,38,44,46,140,7,96,245,23,81,132]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,72,102,75,99,109,73,78,73,89,52,66,110,100,115,78,78,115,51,102,104,74,72,48,121,43,117,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,77,122,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,77,52,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,105,47,53,52,51,83,67,71,72,73,110,100,67,57,66,97,67,102,115,49,70,82,81,49,117,53,115,52,122,105,97,48,102,43,109,110,10,100,69,54,70,77,109,79,69,109,81,49,107,89,115,102,86,114,78,90,97,102,120,88,86,80,74,106,111,83,66,79,57,116,122,108,109,84,86,112,81,109,70,85,69,53,82,101,100,83,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,53,86,81,118,103,106,43,77,47,110,65,43,51,110,50,84,10,82,109,82,78,68,109,116,67,109,122,115,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,69,97,114,103,104,69,122,110,119,87,69,117,73,68,82,103,70,105,69,111,51,105,107,47,77,111,89,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,73,69,72,117,87,68,69,71,55,81,75,57,10,119,90,49,55,110,54,110,76,111,90,109,100,67,81,85,109,72,103,119,54,110,53,114,114,106,66,119,56,89,116,69,67,73,67,121,90,101,101,108,115,69,116,53,66,118,104,72,66,79,103,99,55,67,52,80,89,78,65,114,70,107,108,84,97,10,57,87,82,69,110,86,81,48,48,117,122,43,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,95,116,165,141,220,16,41,54,185,216,7,189,241,200,208,26,149,207,232,137,187,200,1,148,92,57,175,48,128,144,50,10,2,32,91,21,208,23,235,229,241,127,54,222,243,222,91,60,175,209,24,203,126,136,118,105,172,137,151,116,217,74,161,44,130,97]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('7d0292f05e3f587157b38b88b8177476e41e5f25e41037a5911cd5e744a2947f', '46,107,66,29,142,252,196,0,169,213,91,229,223,223,107,185,44,118,61,117,224,75,213,79,87,186,241,119,21,168,108,250', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,87,89,110,76,51,108,105,53,77,54,104,122,75,69,108,113,82,100,53,116,68,78,77,74,122,117,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,81,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,85,119,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,84,87,101,48,120,65,65,72,56,88,101,77,80,77,86,67,110,98,76,106,68,55,101,113,117,100,98,65,76,85,10,116,122,121,66,67,103,107,111,69,79,105,47,57,87,69,89,117,108,77,116,98,69,105,65,84,47,76,89,48,54,49,81,73,107,68,120,47,97,82,51,78,48,120,108,104,52,105,73,100,81,113,76,117,88,99,70,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,81,120,88,82,113,75,109,117,52,69,10,85,49,117,80,100,89,57,121,120,54,55,72,47,51,55,105,87,84,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,83,98,75,49,50,118,73,53,65,110,71,85,83,122,76,108,111,87,97,116,72,53,90,75,98,90,107,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,121,90,68,107,51,77,106,104,109,90,71,85,119,78,84,73,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,73,106,103,117,85,86,53,81,73,111,90,10,112,108,81,57,78,53,110,65,79,110,70,49,85,105,48,87,89,118,108,79,76,57,83,85,77,65,66,76,111,90,120,86,65,105,66,57,79,102,117,85,68,88,54,120,119,88,122,79,51,121,53,98,90,53,111,83,73,114,112,76,121,115,102,78,10,115,43,53,106,122,117,75,56,100,112,90,111,70,65,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[208,215,163,24,65,116,145,133,84,34,79,148,92,190,237,94,71,38,181,55,193,178,219,76]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[180,122,53,4,53,203,154,30,14,45,232,252,137,153,52,166,159,143,145,40,143,80,155,187,40,6,251,49,17,10,58,101]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,70,72,120,109,47,118,56,80,71,48,80,108,101,85,87,72,97,84,106,90,100,79,83,112,76,75,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,48,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,49,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,88,78,86,110,109,105,113,120,101,84,73,54,71,89,102,52,47,102,111,99,73,110,57,76,114,101,121,81,122,76,10,43,111,73,90,101,88,69,75,107,88,111,118,106,77,54,83,97,100,122,113,71,116,71,70,80,108,52,101,53,47,56,89,85,82,101,87,70,103,55,76,71,110,88,72,110,100,101,98,51,113,56,57,73,65,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,51,51,100,47,97,118,85,67,108,67,10,50,102,70,87,98,118,112,80,76,53,83,114,111,72,65,89,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,86,77,54,67,68,112,101,103,103,112,83,65,50,103,76,108,103,117,117,111,107,72,82,87,106,118,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,101,47,80,111,104,51,10,79,57,97,106,103,86,80,47,56,97,116,73,98,67,78,103,87,112,106,104,68,48,54,81,122,76,75,70,112,101,79,71,118,110,70,74,65,105,65,103,110,104,67,50,109,57,88,121,67,89,56,88,49,106,52,99,86,97,119,80,118,118,56,71,10,67,77,83,70,120,101,66,102,103,43,122,52,47,102,101,116,72,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,90,247,255,99,237,135,190,212,236,243,210,210,63,96,127,82,8,196,107,56,79,135,171,37,79,122,109,214,81,67,117,35,2,32,119,178,69,171,57,238,30,164,0,16,183,211,68,94,169,156,194,111,195,42,2,207,28,157,61,150,160,17,249,44,122,77]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,66,101,80,109,89,104,115,72,118,75,122,53,113,84,104,73,71,121,52,53,72,107,83,115,78,87,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,81,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,85,119,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,119,57,43,89,120,98,51,80,49,97,68,51,112,118,86,103,89,67,57,120,87,88,118,116,48,109,111,115,88,90,76,103,70,83,101,115,10,121,67,119,80,57,102,79,55,50,76,109,80,66,117,66,119,105,55,67,90,48,106,70,49,73,48,117,57,107,104,102,76,87,51,48,65,85,70,68,77,77,86,88,75,117,120,120,50,57,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,43,115,107,86,112,43,89,102,50,97,105,71,82,73,122,56,10,66,67,66,66,55,116,111,67,55,105,81,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,109,121,116,100,114,121,79,81,74,120,108,69,115,121,53,97,70,109,114,82,43,87,83,109,50,90,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,101,53,106,106,112,81,111,90,51,85,68,84,10,53,52,52,120,104,57,122,88,80,119,97,88,73,48,111,79,105,54,113,103,87,69,113,52,69,79,89,88,110,51,77,67,73,67,81,77,70,78,73,53,106,104,107,48,81,87,81,47,68,87,47,74,55,115,43,72,90,85,73,120,117,90,122,55,10,115,118,108,111,68,84,99,115,122,71,74,88,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,205,161,51,90,121,69,200,154,51,69,91,138,69,29,92,56,204,24,222,36,30,77,224,185,58,183,164,43,151,183,254,142,2,32,45,104,179,208,71,16,242,228,136,9,121,147,26,192,199,113,173,73,160,2,115,253,201,230,16,81,147,192,53,46,241,85]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('f20a77f32c34a80af8ad481ce1430981e7259bf68b8e6d2dc31bfe84cf55cdcc', '113,208,146,38,132,158,93,4,12,180,18,66,12,157,234,226,164,204,180,211,149,223,233,196,77,151,106,169,22,228,192,185', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,90,47,85,89,83,77,101,76,68,52,75,71,65,112,113,69,51,76,74,67,107,117,122,113,109,54,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,48,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,49,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,87,71,68,90,104,79,76,70,98,84,103,65,47,121,118,117,74,98,84,82,54,74,99,108,10,89,112,85,111,111,74,120,66,47,72,113,116,70,97,104,43,68,101,120,47,79,122,115,70,74,116,66,108,105,105,70,97,102,85,109,89,85,113,86,68,120,71,84,103,121,111,72,116,74,49,82,48,103,73,120,54,90,105,72,68,47,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,77,56,77,87,10,69,100,74,79,115,113,48,112,71,43,77,113,115,57,107,67,76,76,107,72,49,107,107,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,57,85,122,111,73,79,108,54,67,67,108,73,68,97,65,117,87,67,54,54,105,81,100,70,10,97,79,56,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,109,81,53,78,122,73,52,90,109,82,108,77,68,85,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,117,89,79,71,85,10,83,119,70,110,56,70,99,55,112,70,116,78,51,110,57,113,67,48,121,67,113,55,99,110,78,114,50,77,103,83,65,90,114,82,71,75,99,81,73,103,70,88,51,83,47,103,113,84,43,52,86,54,114,66,52,111,89,77,65,111,109,69,118,66,10,109,57,65,117,83,48,107,76,104,50,52,85,121,89,71,116,107,88,103,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[187,69,107,53,207,151,147,255,70,105,166,158,27,29,151,211,33,162,3,58,242,141,76,113]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[24,27,18,170,1,163,60,123,189,110,61,60,252,215,84,149,209,109,62,71,233,210,28,139,241,229,106,175,85,211,23,17]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,66,101,80,109,89,104,115,72,118,75,122,53,113,84,104,73,71,121,52,53,72,107,83,115,78,87,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,81,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,85,119,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,119,57,43,89,120,98,51,80,49,97,68,51,112,118,86,103,89,67,57,120,87,88,118,116,48,109,111,115,88,90,76,103,70,83,101,115,10,121,67,119,80,57,102,79,55,50,76,109,80,66,117,66,119,105,55,67,90,48,106,70,49,73,48,117,57,107,104,102,76,87,51,48,65,85,70,68,77,77,86,88,75,117,120,120,50,57,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,43,115,107,86,112,43,89,102,50,97,105,71,82,73,122,56,10,66,67,66,66,55,116,111,67,55,105,81,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,109,121,116,100,114,121,79,81,74,120,108,69,115,121,53,97,70,109,114,82,43,87,83,109,50,90,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,101,53,106,106,112,81,111,90,51,85,68,84,10,53,52,52,120,104,57,122,88,80,119,97,88,73,48,111,79,105,54,113,103,87,69,113,52,69,79,89,88,110,51,77,67,73,67,81,77,70,78,73,53,106,104,107,48,81,87,81,47,68,87,47,74,55,115,43,72,90,85,73,120,117,90,122,55,10,115,118,108,111,68,84,99,115,122,71,74,88,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,180,103,215,31,22,144,180,169,241,43,176,59,169,134,145,99,164,100,187,247,17,211,198,184,43,54,53,157,248,163,248,193,2,32,61,32,136,145,82,238,61,224,244,215,7,189,80,122,156,232,14,23,168,240,178,247,200,203,87,38,11,182,208,122,129,92]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,70,72,120,109,47,118,56,80,71,48,80,108,101,85,87,72,97,84,106,90,100,79,83,112,76,75,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,48,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,49,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,88,78,86,110,109,105,113,120,101,84,73,54,71,89,102,52,47,102,111,99,73,110,57,76,114,101,121,81,122,76,10,43,111,73,90,101,88,69,75,107,88,111,118,106,77,54,83,97,100,122,113,71,116,71,70,80,108,52,101,53,47,56,89,85,82,101,87,70,103,55,76,71,110,88,72,110,100,101,98,51,113,56,57,73,65,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,51,51,100,47,97,118,85,67,108,67,10,50,102,70,87,98,118,112,80,76,53,83,114,111,72,65,89,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,86,77,54,67,68,112,101,103,103,112,83,65,50,103,76,108,103,117,117,111,107,72,82,87,106,118,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,101,47,80,111,104,51,10,79,57,97,106,103,86,80,47,56,97,116,73,98,67,78,103,87,112,106,104,68,48,54,81,122,76,75,70,112,101,79,71,118,110,70,74,65,105,65,103,110,104,67,50,109,57,88,121,67,89,56,88,49,106,52,99,86,97,119,80,118,118,56,71,10,67,77,83,70,120,101,66,102,103,43,122,52,47,102,101,116,72,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,3,161,38,13,206,97,43,74,234,58,1,42,54,35,129,127,179,208,60,55,24,130,178,58,91,110,217,25,205,181,137,209,2,32,102,100,15,5,241,183,66,213,155,29,0,190,90,198,100,79,85,34,185,247,19,177,28,70,61,118,202,60,243,71,139,28]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('41cda8358bf92e024abd127dd7893b9cdcea4449553e1ed43d5de6494d3930d4', '167,242,90,79,38,19,184,68,189,103,122,235,255,23,251,198,171,85,208,122,255,143,74,243,189,55,104,140,177,219,212,214', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,90,47,85,89,83,77,101,76,68,52,75,71,65,112,113,69,51,76,74,67,107,117,122,113,109,54,69,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,48,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,49,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,87,71,68,90,104,79,76,70,98,84,103,65,47,121,118,117,74,98,84,82,54,74,99,108,10,89,112,85,111,111,74,120,66,47,72,113,116,70,97,104,43,68,101,120,47,79,122,115,70,74,116,66,108,105,105,70,97,102,85,109,89,85,113,86,68,120,71,84,103,121,111,72,116,74,49,82,48,103,73,120,54,90,105,72,68,47,97,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,77,56,77,87,10,69,100,74,79,115,113,48,112,71,43,77,113,115,57,107,67,76,76,107,72,49,107,107,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,57,85,122,111,73,79,108,54,67,67,108,73,68,97,65,117,87,67,54,54,105,81,100,70,10,97,79,56,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,109,81,53,78,122,73,52,90,109,82,108,77,68,85,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,117,89,79,71,85,10,83,119,70,110,56,70,99,55,112,70,116,78,51,110,57,113,67,48,121,67,113,55,99,110,78,114,50,77,103,83,65,90,114,82,71,75,99,81,73,103,70,88,51,83,47,103,113,84,43,52,86,54,114,66,52,111,89,77,65,111,109,69,118,66,10,109,57,65,117,83,48,107,76,104,50,52,85,121,89,71,116,107,88,103,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[234,118,86,126,147,50,243,95,82,248,123,220,45,112,117,127,194,169,116,129,178,60,124,176]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[207,119,184,134,102,43,250,147,20,13,157,160,1,131,107,172,59,103,100,151,227,100,205,72,112,118,64,65,219,135,166,40]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,70,72,120,109,47,118,56,80,71,48,80,108,101,85,87,72,97,84,106,90,100,79,83,112,76,75,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,89,48,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,89,49,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,88,78,86,110,109,105,113,120,101,84,73,54,71,89,102,52,47,102,111,99,73,110,57,76,114,101,121,81,122,76,10,43,111,73,90,101,88,69,75,107,88,111,118,106,77,54,83,97,100,122,113,71,116,71,70,80,108,52,101,53,47,56,89,85,82,101,87,70,103,55,76,71,110,88,72,110,100,101,98,51,113,56,57,73,65,43,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,51,51,100,47,97,118,85,67,108,67,10,50,102,70,87,98,118,112,80,76,53,83,114,111,72,65,89,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,86,77,54,67,68,112,101,103,103,112,83,65,50,103,76,108,103,117,117,111,107,72,82,87,106,118,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,101,47,80,111,104,51,10,79,57,97,106,103,86,80,47,56,97,116,73,98,67,78,103,87,112,106,104,68,48,54,81,122,76,75,70,112,101,79,71,118,110,70,74,65,105,65,103,110,104,67,50,109,57,88,121,67,89,56,88,49,106,52,99,86,97,119,80,118,118,56,71,10,67,77,83,70,120,101,66,102,103,43,122,52,47,102,101,116,72,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,174,245,55,85,130,161,21,24,100,151,222,5,165,218,155,86,148,105,73,22,123,4,114,105,118,28,3,70,78,166,185,118,2,32,116,88,209,253,243,186,62,125,93,246,34,125,74,29,10,101,151,213,96,179,25,67,201,234,221,96,202,227,42,131,141,8]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,66,101,80,109,89,104,115,72,118,75,122,53,113,84,104,73,71,121,52,53,72,107,83,115,78,87,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,106,81,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,106,85,119,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,119,57,43,89,120,98,51,80,49,97,68,51,112,118,86,103,89,67,57,120,87,88,118,116,48,109,111,115,88,90,76,103,70,83,101,115,10,121,67,119,80,57,102,79,55,50,76,109,80,66,117,66,119,105,55,67,90,48,106,70,49,73,48,117,57,107,104,102,76,87,51,48,65,85,70,68,77,77,86,88,75,117,120,120,50,57,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,43,115,107,86,112,43,89,102,50,97,105,71,82,73,122,56,10,66,67,66,66,55,116,111,67,55,105,81,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,109,121,116,100,114,121,79,81,74,120,108,69,115,121,53,97,70,109,114,82,43,87,83,109,50,90,73,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,101,53,106,106,112,81,111,90,51,85,68,84,10,53,52,52,120,104,57,122,88,80,119,97,88,73,48,111,79,105,54,113,103,87,69,113,52,69,79,89,88,110,51,77,67,73,67,81,77,70,78,73,53,106,104,107,48,81,87,81,47,68,87,47,74,55,115,43,72,90,85,73,120,117,90,122,55,10,115,118,108,111,68,84,99,115,122,71,74,88,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,239,114,110,248,68,106,161,156,208,121,56,149,100,116,29,63,80,201,33,139,75,29,8,162,138,193,70,138,209,6,61,18,2,32,25,73,181,105,95,200,242,158,105,229,119,153,187,229,212,246,241,20,226,147,23,2,192,44,183,76,184,201,68,228,13,0]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('e42ea9221aac45d21cfd15cd9ee7add7bd6a5d2d6e78d0ad3433670480731620', '218,165,246,208,20,7,25,120,154,218,205,160,179,36,137,63,63,160,31,126,243,158,78,117,90,95,191,152,219,221,212,187', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,71,72,55,117,98,86,88,113,105,53,118,72,43,97,114,76,74,77,111,102,103,57,99,80,83,81,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,122,65,51,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,122,69,121,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,50,53,104,75,102,90,43,57,104,74,111,99,49,47,81,70,115,98,110,114,108,78,57,97,71,120,47,66,70,10,99,49,115,52,106,48,86,113,85,105,100,52,76,116,109,121,99,76,72,114,68,104,53,75,89,56,113,66,71,76,85,53,71,53,118,100,72,106,87,87,107,67,66,118,80,52,73,75,116,116,53,106,122,72,52,53,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,81,49,69,85,71,55,89,75,97,102,10,68,50,122,56,122,89,121,82,77,120,48,108,70,110,83,120,114,106,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,83,114,74,80,90,75,79,81,112,105,119,53,72,79,73,56,84,49,65,75,77,83,84,72,76,116,97,84,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,121,78,50,82,104,77,68,78,107,79,71,78,108,77,84,65,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,106,103,88,77,89,53,48,77,105,75,110,10,76,106,79,47,119,89,84,121,120,81,98,120,56,50,105,102,103,112,112,113,121,106,79,65,78,88,113,120,105,106,111,67,73,65,74,115,67,120,107,115,112,54,113,65,51,74,56,83,70,103,97,68,116,102,73,89,55,121,85,89,85,103,106,79,10,115,115,103,51,49,110,101,65,50,49,43,117,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[154,70,120,68,220,153,196,67,63,74,168,194,119,138,10,148,227,35,135,166,174,241,194,9]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":0,\""typeString\"":\""UNDEFINED\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{\""type\"":\""Buffer\"",\""data\"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""_lifecycle\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[173,46,163,223,236,124,117,232,78,201,172,55,157,72,80,65,34,55,83,116,204,170,174,6,230,80,114,229,78,67,208,241]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\""},{\""key\"":\""namespaces/metadata/basic\""}],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""namespaces/fields/basic/Collections\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,0]}},{\""key\"":\""namespaces/fields/basic/EndorsementInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{\""key\"":\""namespaces/fields/basic/Sequence\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[8,1]}},{\""key\"":\""namespaces/fields/basic/ValidationInfo\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{\""key\"":\""namespaces/metadata/basic\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[{\""collection_name\"":\""_implicit_org_Org1MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":3,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}},{\""collection_name\"":\""_implicit_org_Org2MSP\"",\""hashed_rwset\"":{\""hashed_reads\"":[{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}},{\""key_hash\"":{\""type\"":\""Buffer\"",\""data\"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},\""version\"":{\""block_num\"":{\""low\"":4,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""hashed_writes\"":[],\""metadata_writes\"":[]},\""pvt_rwset_hash\"":{\""type\"":\""Buffer\"",\""data\"":[]}}]},{\""namespace\"":\""lscc\"",\""rwset\"":{\""reads\"":[{\""key\"":\""basic\""}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""_lifecycle\"",\""version\"":\""syscc\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,90,52,43,76,87,118,76,87,105,107,105,48,47,78,66,99,90,111,68,76,88,117,47,118,113,107,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,99,119,78,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,99,120,77,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,50,66,87,101,47,79,80,83,108,76,90,85,119,80,108,109,67,68,114,43,77,87,50,107,98,54,84,112,89,10,81,112,121,113,81,97,110,51,65,111,121,108,108,87,78,100,52,114,49,111,89,52,121,79,104,70,81,82,87,122,103,54,85,115,73,67,81,57,89,53,76,112,115,87,105,66,79,87,107,76,86,81,97,114,97,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,77,78,84,89,114,114,70,56,51,85,97,10,107,55,88,98,109,102,117,112,99,70,121,120,70,53,55,122,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,72,101,80,70,113,70,108,87,73,70,51,113,84,115,77,55,85,72,82,55,43,88,52,47,112,77,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,47,71,84,56,56,10,113,114,66,117,56,74,47,81,73,65,66,113,57,74,76,55,106,53,75,68,115,98,78,108,43,109,47,66,73,100,98,43,76,77,122,78,113,103,73,103,86,105,74,75,105,74,56,80,104,122,104,122,74,108,112,90,54,55,85,114,83,89,43,78,10,85,55,86,120,99,118,109,104,49,57,103,70,104,51,98,117,119,97,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,184,144,203,252,188,194,17,113,149,54,200,57,233,128,59,134,117,166,43,170,190,182,151,115,68,6,133,3,145,45,75,120,2,32,69,122,128,5,6,218,253,132,95,30,43,69,151,149,96,231,116,113,104,11,5,178,254,185,212,134,155,137,227,182,10,47]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,88,74,72,88,73,107,76,47,69,81,111,70,49,55,56,79,73,53,80,86,50,106,74,48,116,85,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,122,65,51,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,122,69,121,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,121,86,65,101,105,72,67,119,71,53,99,51,117,51,77,114,99,65,72,77,57,120,87,68,54,75,106,79,108,49,79,116,104,109,76,86,10,112,99,110,99,47,105,56,81,109,108,48,57,114,119,100,57,67,88,110,79,122,104,89,106,57,65,97,115,119,50,82,56,119,101,114,48,54,90,101,48,50,88,109,102,83,109,68,55,100,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,77,50,99,113,103,105,117,110,97,88,66,49,108,57,102,85,10,83,107,120,49,76,74,73,55,52,110,48,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,113,121,84,50,83,106,107,75,89,115,79,82,122,105,80,69,57,81,67,106,69,107,120,121,55,87,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,79,122,97,67,120,104,113,56,77,98,55,86,10,78,78,105,121,47,75,75,84,79,103,51,57,79,120,55,84,119,43,116,43,107,114,57,116,47,74,90,101,120,99,85,67,73,69,118,84,57,101,50,65,81,69,89,99,51,114,66,78,70,106,67,49,88,74,121,118,74,67,112,54,116,50,88,80,10,48,73,66,78,113,47,114,108,107,115,106,67,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,154,233,118,248,150,96,144,217,177,21,136,152,68,42,81,248,32,252,84,246,74,61,77,0,84,52,45,250,91,211,145,146,2,32,77,104,214,12,29,128,250,95,244,63,169,65,20,44,135,243,41,75,35,166,10,193,17,48,192,49,109,67,216,125,167,137]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('c36056c90d4d87ba9306a0c3de1bed70aa5a96c489b4381b21c0e775136a0346', '211,71,33,41,140,64,31,65,204,237,65,240,93,63,204,128,67,46,245,221,148,145,51,175,220,205,44,121,224,28,47,187', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,98,113,78,56,109,88,115,57,78,118,86,74,77,70,89,106,113,56,111,113,105,112,69,53,56,105,52,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,99,119,78,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,99,120,77,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,89,107,69,81,52,98,107,51,85,98,108,110,70,98,74,67,69,86,43,86,104,50,55,84,10,82,75,50,73,99,104,48,114,50,107,114,106,116,89,116,88,56,77,113,86,112,117,66,55,110,84,76,47,75,69,117,86,113,105,105,119,113,101,115,121,74,67,68,109,106,74,115,85,52,56,83,55,89,89,47,120,98,75,48,72,111,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,68,99,76,75,10,120,114,98,73,114,90,121,57,121,120,106,75,69,100,121,82,75,43,90,57,102,122,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,100,52,56,87,111,87,86,89,103,88,101,112,79,119,122,116,81,100,72,118,53,102,106,43,10,107,119,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,106,100,107,89,84,65,122,90,68,104,106,90,84,69,119,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,105,78,66,57,120,10,69,54,85,68,87,103,86,88,47,108,103,103,56,69,73,118,50,82,69,111,83,72,90,107,69,86,74,112,121,53,72,54,51,104,85,82,65,81,73,103,97,89,72,87,103,78,88,78,99,117,110,97,118,69,100,72,54,79,100,82,118,66,109,47,10,47,49,80,114,69,105,117,79,43,75,90,100,112,67,84,104,119,97,119,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[155,138,92,159,39,41,161,241,113,175,20,5,124,131,176,135,201,190,135,210,133,227,53,22]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[80,149,255,156,218,196,125,106,106,200,64,226,232,6,126,156,110,128,9,45,75,50,220,194,244,245,182,245,247,113,217,23]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,90,52,43,76,87,118,76,87,105,107,105,48,47,78,66,99,90,111,68,76,88,117,47,118,113,107,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,99,119,78,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,99,120,77,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,50,66,87,101,47,79,80,83,108,76,90,85,119,80,108,109,67,68,114,43,77,87,50,107,98,54,84,112,89,10,81,112,121,113,81,97,110,51,65,111,121,108,108,87,78,100,52,114,49,111,89,52,121,79,104,70,81,82,87,122,103,54,85,115,73,67,81,57,89,53,76,112,115,87,105,66,79,87,107,76,86,81,97,114,97,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,77,78,84,89,114,114,70,56,51,85,97,10,107,55,88,98,109,102,117,112,99,70,121,120,70,53,55,122,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,72,101,80,70,113,70,108,87,73,70,51,113,84,115,77,55,85,72,82,55,43,88,52,47,112,77,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,47,71,84,56,56,10,113,114,66,117,56,74,47,81,73,65,66,113,57,74,76,55,106,53,75,68,115,98,78,108,43,109,47,66,73,100,98,43,76,77,122,78,113,103,73,103,86,105,74,75,105,74,56,80,104,122,104,122,74,108,112,90,54,55,85,114,83,89,43,78,10,85,55,86,120,99,118,109,104,49,57,103,70,104,51,98,117,119,97,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,127,64,219,198,186,209,0,152,219,120,235,31,48,183,194,200,166,174,138,177,229,78,221,21,123,239,85,162,15,12,106,46,2,32,2,1,5,100,52,48,36,84,176,153,243,78,42,73,43,140,84,14,115,231,48,159,18,115,227,71,100,136,86,68,128,61]}},{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,88,74,72,88,73,107,76,47,69,81,111,70,49,55,56,79,73,53,80,86,50,106,74,48,116,85,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,122,65,51,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,122,69,121,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,121,86,65,101,105,72,67,119,71,53,99,51,117,51,77,114,99,65,72,77,57,120,87,68,54,75,106,79,108,49,79,116,104,109,76,86,10,112,99,110,99,47,105,56,81,109,108,48,57,114,119,100,57,67,88,110,79,122,104,89,106,57,65,97,115,119,50,82,56,119,101,114,48,54,90,101,48,50,88,109,102,83,109,68,55,100,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,77,50,99,113,103,105,117,110,97,88,66,49,108,57,102,85,10,83,107,120,49,76,74,73,55,52,110,48,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,113,121,84,50,83,106,107,75,89,115,79,82,122,105,80,69,57,81,67,106,69,107,120,121,55,87,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,79,122,97,67,120,104,113,56,77,98,55,86,10,78,78,105,121,47,75,75,84,79,103,51,57,79,120,55,84,119,43,116,43,107,114,57,116,47,74,90,101,120,99,85,67,73,69,118,84,57,101,50,65,81,69,89,99,51,114,66,78,70,106,67,49,88,74,121,118,74,67,112,54,116,50,88,80,10,48,73,66,78,113,47,114,108,107,115,106,67,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,87,161,2,6,205,251,79,15,180,209,35,227,121,54,5,35,63,165,123,245,169,6,105,191,31,76,85,137,208,207,131,190,2,32,125,103,229,26,35,5,91,143,87,53,151,90,60,176,190,132,23,215,247,209,59,115,48,0,146,114,222,104,236,33,50,62]}}]}}}""}"'); -INSERT INTO "fabric_transactions_entry" ("id", "block_id", "transaction_data") VALUES ('d5eafbe70b638d9936884c33c694e90c8e6a65fed20b05d1a19f3e811745e5ed', '188,176,131,156,184,160,126,28,19,249,243,18,149,250,243,131,228,230,22,24,39,166,13,196,28,171,171,130,243,181,140,132', '"{""{\""header\"":{\""creator\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,98,113,78,56,109,88,115,57,78,118,86,74,77,70,89,106,113,56,111,113,105,112,69,53,56,105,52,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,99,119,78,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,99,120,77,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,89,107,69,81,52,98,107,51,85,98,108,110,70,98,74,67,69,86,43,86,104,50,55,84,10,82,75,50,73,99,104,48,114,50,107,114,106,116,89,116,88,56,77,113,86,112,117,66,55,110,84,76,47,75,69,117,86,113,105,105,119,113,101,115,121,74,67,68,109,106,74,115,85,52,56,83,55,89,89,47,120,98,75,48,72,111,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,68,99,76,75,10,120,114,98,73,114,90,121,57,121,120,106,75,69,100,121,82,75,43,90,57,102,122,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,100,52,56,87,111,87,86,89,103,88,101,112,79,119,122,116,81,100,72,118,53,102,106,43,10,107,119,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,106,100,107,89,84,65,122,90,68,104,106,90,84,69,119,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,105,78,66,57,120,10,69,54,85,68,87,103,86,88,47,108,103,103,56,69,73,118,50,82,69,111,83,72,90,107,69,86,74,112,121,53,72,54,51,104,85,82,65,81,73,103,97,89,72,87,103,78,88,78,99,117,110,97,118,69,100,72,54,79,100,82,118,66,109,47,10,47,49,80,114,69,105,117,79,43,75,90,100,112,67,84,104,119,97,119,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""nonce\"":{\""type\"":\""Buffer\"",\""data\"":[163,91,35,190,144,127,158,215,56,78,177,110,214,138,120,13,9,206,199,229,200,194,122,62]}},\""payload\"":{\""chaincode_proposal_payload\"":{\""input\"":{\""chaincode_spec\"":{\""type\"":1,\""typeString\"":\""GOLANG\"",\""input\"":{\""args\"":[{\""type\"":\""Buffer\"",\""data\"":[73,110,105,116,76,101,100,103,101,114]}],\""decorations\"":{},\""is_init\"":false},\""chaincode_id\"":{\""name\"":\""basic\""},\""timeout\"":0}}},\""action\"":{\""proposal_response_payload\"":{\""proposal_hash\"":{\""type\"":\""Buffer\"",\""data\"":[119,124,150,149,59,114,78,68,151,115,140,123,5,122,217,24,71,196,215,229,218,189,215,219,236,125,146,173,194,65,66,254]},\""extension\"":{\""results\"":{\""data_model\"":0,\""ns_rwset\"":[{\""namespace\"":\""_lifecycle\"",\""rwset\"":{\""reads\"":[{\""key\"":\""namespaces/fields/basic/Sequence\"",\""version\"":{\""block_num\"":{\""low\"":5,\""high\"":0,\""unsigned\"":true},\""tx_num\"":{\""low\"":0,\""high\"":0,\""unsigned\"":true}}}],\""range_queries_info\"":[],\""writes\"":[],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]},{\""namespace\"":\""basic\"",\""rwset\"":{\""reads\"":[],\""range_queries_info\"":[],\""writes\"":[{\""key\"":\""asset1\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{\""key\"":\""asset2\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{\""key\"":\""asset3\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{\""key\"":\""asset4\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{\""key\"":\""asset5\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{\""key\"":\""asset6\"",\""is_delete\"":false,\""value\"":{\""type\"":\""Buffer\"",\""data\"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],\""metadata_writes\"":[]},\""collection_hashed_rwset\"":[]}]},\""events\"":{\""chaincode_id\"":\""\"",\""tx_id\"":\""\"",\""event_name\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""response\"":{\""status\"":200,\""message\"":\""\"",\""payload\"":{\""type\"":\""Buffer\"",\""data\"":[]}},\""chaincode_id\"":{\""path\"":\""\"",\""name\"":\""basic\"",\""version\"":\""1.0\""}}},\""endorsements\"":[{\""endorser\"":{\""mspid\"":\""Org2MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,88,74,72,88,73,107,76,47,69,81,111,70,49,55,56,79,73,53,80,86,50,106,74,48,116,85,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,77,120,78,122,65,51,77,68,66,97,70,119,48,121,78,68,65,121,77,106,77,120,78,122,69,121,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,121,86,65,101,105,72,67,119,71,53,99,51,117,51,77,114,99,65,72,77,57,120,87,68,54,75,106,79,108,49,79,116,104,109,76,86,10,112,99,110,99,47,105,56,81,109,108,48,57,114,119,100,57,67,88,110,79,122,104,89,106,57,65,97,115,119,50,82,56,119,101,114,48,54,90,101,48,50,88,109,102,83,109,68,55,100,97,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,77,50,99,113,103,105,117,110,97,88,66,49,108,57,102,85,10,83,107,120,49,76,74,73,55,52,110,48,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,113,121,84,50,83,106,107,75,89,115,79,82,122,105,80,69,57,81,67,106,69,107,120,121,55,87,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,79,122,97,67,120,104,113,56,77,98,55,86,10,78,78,105,121,47,75,75,84,79,103,51,57,79,120,55,84,119,43,116,43,107,114,57,116,47,74,90,101,120,99,85,67,73,69,118,84,57,101,50,65,81,69,89,99,51,114,66,78,70,106,67,49,88,74,121,118,74,67,112,54,116,50,88,80,10,48,73,66,78,113,47,114,108,107,115,106,67,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,69,2,33,0,252,245,123,2,173,239,188,64,24,150,44,253,144,26,210,239,218,199,251,97,161,35,68,139,56,101,80,46,207,43,190,126,2,32,70,1,221,233,30,228,94,168,111,192,236,141,31,173,96,68,87,69,131,225,107,244,245,209,109,105,83,252,126,19,157,104]}},{\""endorser\"":{\""mspid\"":\""Org1MSP\"",\""id_bytes\"":{\""type\"":\""Buffer\"",\""data\"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,90,52,43,76,87,118,76,87,105,107,105,48,47,78,66,99,90,111,68,76,88,117,47,118,113,107,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,122,77,84,99,119,78,122,65,119,87,104,99,78,77,106,81,119,77,106,73,122,77,84,99,120,77,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,67,76,50,66,87,101,47,79,80,83,108,76,90,85,119,80,108,109,67,68,114,43,77,87,50,107,98,54,84,112,89,10,81,112,121,113,81,97,110,51,65,111,121,108,108,87,78,100,52,114,49,111,89,52,121,79,104,70,81,82,87,122,103,54,85,115,73,67,81,57,89,53,76,112,115,87,105,66,79,87,107,76,86,81,97,114,97,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,77,78,84,89,114,114,70,56,51,85,97,10,107,55,88,98,109,102,117,112,99,70,121,120,70,53,55,122,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,72,101,80,70,113,70,108,87,73,70,51,113,84,115,77,55,85,72,82,55,43,88,52,47,112,77,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,67,47,71,84,56,56,10,113,114,66,117,56,74,47,81,73,65,66,113,57,74,76,55,106,53,75,68,115,98,78,108,43,109,47,66,73,100,98,43,76,77,122,78,113,103,73,103,86,105,74,75,105,74,56,80,104,122,104,122,74,108,112,90,54,55,85,114,83,89,43,78,10,85,55,86,120,99,118,109,104,49,57,103,70,104,51,98,117,119,97,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},\""signature\"":{\""type\"":\""Buffer\"",\""data\"":[48,68,2,32,50,126,53,187,140,118,16,165,38,140,232,164,12,109,210,118,225,178,188,156,58,21,29,114,131,212,187,47,93,86,217,101,2,32,29,196,233,166,117,170,44,22,80,126,12,6,207,90,200,229,228,17,206,140,149,67,40,92,193,28,123,126,241,255,126,86]}}]}}}""}"'); - -INSERT INTO "fabric_transactions" ("block_id", "block_number", "created_at", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincode_name", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('cd3ba07bb122fbcd890a33ab3effd7a33677bb997e1b80031a3799e5098adb76', '5', '2023-02-24 07:55:18.252', '200', '', '', '120c120a5f6c6966656379636c65', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,73,52,85,105,48,52,68,100,110,107,83,98,53,55,100,82,53,111,112,118,114,43,102,104,106,67,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,81,48,122,112,81,54,100,111,108,51,85,78,77,115,122,78,114,117,90,57,119,84,98,67,73,50,114,52,78,66,10,89,48,116,68,116,52,51,98,111,81,50,78,87,67,72,109,103,103,85,107,66,101,109,79,54,68,52,122,85,43,109,106,86,85,85,65,86,54,114,76,105,121,69,53,104,47,113,102,108,53,71,87,106,47,54,53,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,74,102,87,79,105,76,55,49,117,10,85,122,109,82,50,104,98,97,76,118,52,49,49,119,99,87,109,122,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,82,83,52,98,47,65,86,98,89,57,52,117,74,51,117,51,83,118,112,43,113,97,65,109,122,114,114,68,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,122,78,50,69,120,77,106,108,107,89,106,69,121,78,50,73,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,67,79,99,116,52,51,56,52,53,51,83,10,89,112,72,98,66,51,102,121,114,56,78,110,49,104,104,104,56,77,76,53,115,106,55,110,119,122,107,83,120,85,77,67,73,65,47,86,67,87,88,115,77,73,102,88,105,85,70,70,80,66,102,65,108,82,120,81,65,108,99,108,114,122,72,118,10,43,75,55,89,56,119,78,102,89,115,113,121,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '165673058f0a3a8c30a4fce90381d1e21b918e81127770cd', '436f6d6d6974436861696e636f6465446566696e6974696f6e,0801120562617369631a03312e30', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '188,159,166,186,198,192,138,21,223,86,162,185,61,163,59,253,190,65,28,213,188,28,4,217,186,82,35,158,33,221,50,135', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '3045022100b97bf9ca7e140d4ab401e38b73036def915d711803832918e035aaaa3d5802b202202cff3f639dca1a477f7b2dfbab8a74b01e74392633559e1db8f602e56b5b4b21', '68', '58613e966d7dfbef9ff062d2ce95f1da18e80bdef89321eca12cf7f5ec648301', '_lifecycle', 'Org2MSP', 'Org1MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence""},{""key"":""namespaces/metadata/basic""}],""range_queries_info"":[],""writes"":[{""key"":""namespaces/fields/basic/Collections"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,0]}},{""key"":""namespaces/fields/basic/EndorsementInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{""key"":""namespaces/fields/basic/Sequence"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[8,1]}},{""key"":""namespaces/fields/basic/ValidationInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{""key"":""namespaces/metadata/basic"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[{""collection_name"":""_implicit_org_Org1MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}},{""collection_name"":""_implicit_org_Org2MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}}]},{""namespace"":""lscc"",""rwset"":{""reads"":[{""key"":""basic""}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""_lifecycle"",""version"":""syscc""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("block_id", "block_number", "created_at", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincode_name", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('50e8db1365150d4b5722767d108abb40c9dbb25d27b40e07c7db395bfd355cb0', '6', '2023-02-24 07:55:22.512', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '878b7902d42a84af704b778fde2efbb16a543934bc4cb1a9', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '175,123,136,118,225,87,179,53,213,201,57,222,136,70,49,163,171,117,101,117,55,19,165,218,238,199,221,1,22,4,235,24', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '3044022046935ecbd7aa98c0c5d5e37765059d30e8e50b672d8a86bb6dd45535615e025b02203fa94a117d71b1b31b22c0699b3bb2ec4efabfd4a9898dc367343f6e3055d209', '69', 'f8575550109d29f1e0da41d7d1e057c5e10c384fc2aba9e43be2d7c4aee047f4', 'basic', 'Org1MSP', 'Org2MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("block_id", "block_number", "created_at", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincode_name", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('50e8db1365150d4b5722767d108abb40c9dbb25d27b40e07c7db395bfd355cb0', '6', '2023-02-24 07:55:25.392', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', 'd0ac5465ad8c501718771f770119e56e34b16e47f76a5435', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '248,229,169,223,0,18,218,140,251,171,108,154,254,140,118,227,73,26,43,107,155,92,165,22,107,138,94,102,131,173,26,171', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '3045022100b0aa0cadf4eb76da8742a0f1d24f850e161ed95904c063d38656f5eb877d20b2022001e15e0fbc8608be2151dcf472eacd22e2baeba081929f6e618f077ee3122df7', '70', '6073b7237a8a5bb34268c493c2d51a3d00df9951821abf1d36cc59cc72fc8cfe', 'basic', 'Org1MSP', 'Org2MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("block_id", "block_number", "created_at", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincode_name", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('f1bee8ff5a74e884afb522b661344a05740257bd64c400b2a0e44716f41b11b2', '7', '2023-02-24 07:55:26.947', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '4fb098857d3fdd1acbefa1098c44e243906dd1b20a2b87c5', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '208,165,95,6,162,15,196,149,89,98,104,68,187,61,228,200,8,161,231,229,122,184,95,93,129,62,105,129,206,185,93,234', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '3044022019cfde0aa8ab2eec883953421831daa89361d58088fa3f2f537525dee9b24749022071217134fc3c14d1ef99b56692d4ad262db0200d47dc51a502efe3515fb9f7db', '71', '0f44f13f2a7f165f22021fb2a50521e08357b5b6d67f9054da9baf5392d5ef5d', 'basic', 'Org1MSP', 'Org2MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("block_id", "block_number", "created_at", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincode_name", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('39c156bc1340919a62e420cb593e5a87d1a7ce30619c9ef210a85d7cca231c21', '8', '2023-02-24 07:55:29.218', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', 'f1499fc8372d05f277d25f8cb3b4c77ce6ea7e0c6fef68e4', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '94,101,212,181,75,142,193,217,74,172,147,124,210,28,214,144,125,135,182,161,13,167,192,110,219,156,120,102,64,155,207,65', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '304402205083900cabc16ce7b8e43ec660841105c6c1c53c2ece7f1a806fbc7238856136022002edb8acd6e761b36c6baca0eb3142ea0f15e48c9658ca8d83dd740949b194b0', '72', '553e0bed7098738c8d790c7804124b5ae4026594513ea3a93e1198de43f609c4', 'basic', 'Org1MSP', 'Org1MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("block_id", "block_number", "created_at", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincode_name", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('39c156bc1340919a62e420cb593e5a87d1a7ce30619c9ef210a85d7cca231c21', '8', '2023-02-24 07:55:30.749', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '4533ba53e2fd4e3d401ba7a2b42dd2b19626fb315f3ca700', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '184,114,183,62,22,154,244,139,28,66,136,115,61,241,164,245,103,11,5,15,120,183,238,160,201,152,254,252,34,162,254,12', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '304402201171e566e0504cccb32e9c025e37ba9a2f5a36dcf2fef2880df6e0e9e1ee54b902202a7f4472faef22ed7c5aaab80a62b92b5d03089ecd4b95af17693716438c576c', '73', '12e699cbf2708778e4a4f35b9a1058ba4f5bf7e48023df43706ef2fe1e3c3c79', 'basic', 'Org1MSP', 'Org2MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("block_id", "block_number", "created_at", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincode_name", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('c6a96a89566e673322dbb2f9553ff036d804eb2ec01a4d40238f79b00f189a16', '9', '2023-02-24 07:55:32.541', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', 'e57317dc8757274673d3841d2f1dc8849c4faf297b24b372', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '162,126,207,209,147,201,46,209,85,164,209,198,83,227,123,94,186,9,162,155,172,254,95,178,201,64,255,4,56,147,227,250', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '304402204ed3cfe563a30a3daa492133d84d9dd9168bf231b29b1a8d31a0975c7108bab302204c8edadae56254d82aa7ebcde2e2908595c0377a969256b1c4f8dbb27e5136b0', '74', '21d58641997009b08d8660da5dc7a829d5936c05a232288212422148b13102e0', 'basic', 'Org1MSP', 'Org1MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); -INSERT INTO "fabric_transactions" ("block_id", "block_number", "created_at", "status", "read_set", "write_set", "payload_extension", "creator_id_bytes", "creator_nonce", "chaincode_proposal_input", "tx_response", "payload_proposal_hash", "endorser_id_bytes", "endorser_signature", "id", "transaction_id", "chaincode_name", "creator_msp_id", "endorser_msp_id", "chaincode_id", "type", "channel_id") VALUES ('c6a96a89566e673322dbb2f9553ff036d804eb2ec01a4d40238f79b00f189a16', '9', '2023-02-24 07:55:34.437', '200', '', '', '1.20712E+17', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', 'f913427fed41122f4616339d3f1553677d5a6d255e204d16', '496e69744c6564676572', '"{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}}"', '95,245,154,200,183,213,30,187,232,6,35,183,247,33,95,56,102,19,131,188,189,198,153,102,8,116,62,160,103,218,43,14', '45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10', '304402200c73f35129e88635d27266e0ca88166491c343f704738ce60cc08e5ba1173b65022022985d9c5e5ae470bf5e2e7fd80bb49ce906552e5ce9a68ed969c7004c966603', '75', '22098c7688c5dd159069515af0a7c31949c1de01916d9f3e7feff2acb4c40f38', 'basic', 'Org1MSP', 'Org1MSP', '"{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}"', 'ENDORSER_TRANSACTION', 'mychannel'); - -INSERT INTO - token_metadata_erc20 -VALUES - ( - '0x514910771AF9Ca656af840dff83E8264EcF986CA', - '2022-1-1T12:00:01Z', - 'ChainLink', - 'LINK', - 1000000000 - ), - ( - '0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39', - '2022-1-09T12:00:01Z', - 'HEX', - 'HEX', - 581297893809.86402784 - ), - ( - '0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2', - '2021-1-10T12:00:01Z', - 'MAKER', - 'MKR', - 977631.036950888222010062 - ), - ( - '0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE', - '2019-1-10T12:00:01Z', - 'SHIBA INU', - 'SHIB', - 999991104547780.409551281285309628 - ); - -INSERT INTO "fabric_blocks_entry_rows" ("id", "block_num", "block_data") VALUES ('60,151,148,151,98,35,37,51,178,96,77,171,93,62,116,101,122,242,158,92,180,206,59,90,227,2,211,215,226,30,136,170', '8', '"{""decodedBlock"":{""header"":{""number"":{""low"":8,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[166,113,255,82,207,25,223,199,146,17,234,157,231,161,203,202,202,56,49,85,201,120,200,113,45,140,13,226,57,189,83,110]},""data_hash"":{""type"":""Buffer"",""data"":[60,151,148,151,98,35,37,51,178,96,77,171,93,62,116,101,122,242,158,92,180,206,59,90,227,2,211,215,226,30,136,170]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,33,208,213,21,156,133,11,239,152,6,171,54,80,227,51,140,69,156,190,201,128,251,146,24,172,3,50,234,222,146,25,186,2,32,47,200,67,158,160,187,20,61,92,104,102,103,207,146,12,93,30,237,225,17,172,27,14,76,95,182,155,167,118,123,154,228]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:42:55.324Z"",""channel_id"":""mychannel"",""tx_id"":""015912a039acd6927194aff587df58d63ef030df079f28b2f13e8c93d7fb783f"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[239,180,231,185,6,142,61,53,76,114,180,84,74,122,208,31,187,66,65,168,212,192,0,11]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[239,180,231,185,6,142,61,53,76,114,180,84,74,122,208,31,187,66,65,168,212,192,0,11]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[105,5,160,171,30,2,4,73,167,148,211,49,160,213,69,178,108,46,11,111,153,48,129,46,180,7,209,96,32,200,212,86]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,78,108,115,116,88,51,87,119,48,69,120,119,83,83,122,80,73,115,117,98,121,99,100,67,113,53,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,77,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,81,119,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,120,68,55,98,86,47,103,81,118,72,115,69,104,71,101,65,74,112,88,87,103,102,52,103,77,78,55,100,105,82,101,67,119,66,80,116,10,55,103,115,85,80,72,120,107,97,75,85,68,112,47,104,49,118,85,110,85,82,106,71,52,82,106,66,81,76,117,113,110,104,110,90,83,109,73,88,112,110,106,88,82,106,101,98,116,100,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,78,57,87,110,121,84,99,66,117,118,50,68,103,80,105,49,10,115,75,80,71,54,84,52,119,109,68,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,90,99,49,104,103,80,51,116,83,66,107,90,50,65,53,109,105,122,116,49,48,50,83,100,100,55,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,78,54,90,83,79,72,84,49,105,85,110,10,86,102,52,67,116,68,119,112,73,115,98,101,82,78,74,121,74,80,115,106,106,78,101,97,100,108,107,113,72,98,51,99,65,105,66,114,66,72,122,66,112,97,74,120,65,72,100,71,108,69,74,83,103,114,88,55,103,51,81,105,51,118,65,80,10,55,78,110,68,47,53,77,85,115,119,68,70,74,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,225,59,91,65,171,51,59,243,199,79,202,245,141,193,60,11,26,235,161,222,4,69,98,128,20,91,135,128,122,41,27,159,2,32,101,163,224,95,152,232,76,210,119,39,81,198,92,171,160,252,93,38,226,66,26,179,161,8,223,252,25,148,60,120,180,44]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,52,99,66,72,99,83,82,97,89,76,56,57,118,43,84,49,98,69,54,70,49,109,76,81,75,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,65,108,53,53,72,98,73,66,113,66,78,85,98,107,101,112,105,119,84,88,98,52,68,109,88,68,121,116,52,117,10,105,78,43,74,118,57,116,120,48,73,118,52,68,75,111,51,48,79,98,83,88,56,89,122,57,86,102,119,89,119,118,51,107,113,115,87,75,102,118,89,68,106,79,51,52,116,50,121,55,105,72,116,87,120,117,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,113,82,116,90,54,90,54,81,112,43,10,75,55,90,67,69,57,101,119,88,84,69,51,73,90,74,67,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,111,82,106,86,53,112,82,88,56,97,108,121,112,68,99,54,53,105,78,48,72,109,86,105,54,115,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,69,53,54,89,49,75,56,10,50,57,115,80,69,98,97,112,111,70,48,117,119,87,54,71,77,66,105,114,122,70,49,118,53,112,50,114,98,88,115,49,79,118,105,101,65,105,66,101,117,72,75,97,119,112,114,77,101,50,76,88,73,69,113,77,86,109,52,51,43,75,51,75,10,69,77,49,117,103,83,120,89,121,109,53,56,78,80,77,47,102,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,120,149,233,140,244,170,96,10,170,217,227,216,31,57,179,135,116,123,210,180,5,169,90,132,63,65,31,115,162,249,239,230,2,32,36,193,100,99,58,254,137,229,81,93,89,172,9,249,107,110,170,89,237,57,245,50,66,81,108,129,183,81,163,164,220,22]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,221,210,105,83,194,227,100,215,235,145,235,213,104,173,35,45,25,45,121,74,13,116,199,55,78,231,146,37,161,33,27,115,2,32,64,59,249,165,181,190,136,198,108,161,238,107,238,129,127,202,231,222,11,238,169,224,67,26,245,66,154,181,7,62,222,174]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:42:57.223Z"",""channel_id"":""mychannel"",""tx_id"":""77b4b7f6ff02dca212706491957f4d3663f0aca470bc943b09eba2f3dc979e92"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[103,14,70,232,173,127,176,179,211,92,173,244,83,58,143,8,181,20,35,157,200,7,41,167]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[103,14,70,232,173,127,176,179,211,92,173,244,83,58,143,8,181,20,35,157,200,7,41,167]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[59,66,155,216,48,24,249,44,126,116,77,167,121,19,29,172,9,155,86,173,167,60,139,111,214,94,22,61,152,67,42,157]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,52,99,66,72,99,83,82,97,89,76,56,57,118,43,84,49,98,69,54,70,49,109,76,81,75,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,65,108,53,53,72,98,73,66,113,66,78,85,98,107,101,112,105,119,84,88,98,52,68,109,88,68,121,116,52,117,10,105,78,43,74,118,57,116,120,48,73,118,52,68,75,111,51,48,79,98,83,88,56,89,122,57,86,102,119,89,119,118,51,107,113,115,87,75,102,118,89,68,106,79,51,52,116,50,121,55,105,72,116,87,120,117,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,113,82,116,90,54,90,54,81,112,43,10,75,55,90,67,69,57,101,119,88,84,69,51,73,90,74,67,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,111,82,106,86,53,112,82,88,56,97,108,121,112,68,99,54,53,105,78,48,72,109,86,105,54,115,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,69,53,54,89,49,75,56,10,50,57,115,80,69,98,97,112,111,70,48,117,119,87,54,71,77,66,105,114,122,70,49,118,53,112,50,114,98,88,115,49,79,118,105,101,65,105,66,101,117,72,75,97,119,112,114,77,101,50,76,88,73,69,113,77,86,109,52,51,43,75,51,75,10,69,77,49,117,103,83,120,89,121,109,53,56,78,80,77,47,102,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,171,213,189,183,194,199,246,137,163,18,178,37,118,54,53,94,129,11,219,141,248,91,29,199,74,131,191,158,148,134,188,21,2,32,106,78,160,47,52,15,103,231,231,123,210,41,217,170,251,193,113,144,9,169,223,74,56,184,218,89,79,107,70,46,89,110]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,11"'); -INSERT INTO "fabric_blocks_entry_rows" ("id", "block_num", "block_data") VALUES ('141,170,189,119,47,141,1,53,227,170,122,18,96,37,83,5,243,7,199,177,205,182,64,173,124,56,77,56,189,150,62,79', '9', '"{""decodedBlock"":{""header"":{""number"":{""low"":9,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[54,146,12,189,14,123,75,133,150,208,11,144,53,45,200,119,83,191,182,180,123,210,202,73,73,70,179,43,64,58,255,144]},""data_hash"":{""type"":""Buffer"",""data"":[141,170,189,119,47,141,1,53,227,170,122,18,96,37,83,5,243,7,199,177,205,182,64,173,124,56,77,56,189,150,62,79]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,222,246,52,180,92,185,95,160,30,98,163,166,38,136,103,200,208,70,70,190,15,13,61,227,187,211,192,230,101,43,184,226,2,32,62,83,227,194,65,134,67,253,165,157,108,205,121,243,177,243,202,88,79,70,102,195,41,67,146,84,69,28,112,167,251,93]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:42:58.553Z"",""channel_id"":""mychannel"",""tx_id"":""8a4a0857b62dfb2fc182c6fc8d5951d35c3c1cdb377b137cb218feedce5d2a65"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[233,21,238,15,219,216,206,222,147,111,224,228,175,192,189,127,249,103,199,63,93,146,236,227]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[233,21,238,15,219,216,206,222,147,111,224,228,175,192,189,127,249,103,199,63,93,146,236,227]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[17,200,85,45,203,19,90,28,146,25,64,77,31,167,68,17,222,22,206,114,133,80,78,4,87,196,160,96,138,45,167,46]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65,107,121,103,65,119,73,66,65,103,73,85,78,108,115,116,88,51,87,119,48,69,120,119,83,83,122,80,73,115,117,98,121,99,100,67,113,53,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,77,49,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,81,119,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,120,68,55,98,86,47,103,81,118,72,115,69,104,71,101,65,74,112,88,87,103,102,52,103,77,78,55,100,105,82,101,67,119,66,80,116,10,55,103,115,85,80,72,120,107,97,75,85,68,112,47,104,49,118,85,110,85,82,106,71,52,82,106,66,81,76,117,113,110,104,110,90,83,109,73,88,112,110,106,88,82,106,101,98,116,100,75,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,78,57,87,110,121,84,99,66,117,118,50,68,103,80,105,49,10,115,75,80,71,54,84,52,119,109,68,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,90,99,49,104,103,80,51,116,83,66,107,90,50,65,53,109,105,122,116,49,48,50,83,100,100,55,107,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,83,65,65,119,82,81,73,104,65,78,54,90,83,79,72,84,49,105,85,110,10,86,102,52,67,116,68,119,112,73,115,98,101,82,78,74,121,74,80,115,106,106,78,101,97,100,108,107,113,72,98,51,99,65,105,66,114,66,72,122,66,112,97,74,120,65,72,100,71,108,69,74,83,103,114,88,55,103,51,81,105,51,118,65,80,10,55,78,110,68,47,53,77,85,115,119,68,70,74,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,223,236,251,227,73,92,179,150,182,229,80,139,180,240,95,196,74,68,172,121,238,32,117,126,179,157,75,5,193,79,215,18,2,32,77,9,220,135,24,191,42,11,155,55,31,108,208,223,63,112,117,241,169,54,95,184,30,148,241,203,12,161,154,149,172,130]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,52,99,66,72,99,83,82,97,89,76,56,57,118,43,84,49,98,69,54,70,49,109,76,81,75,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,65,108,53,53,72,98,73,66,113,66,78,85,98,107,101,112,105,119,84,88,98,52,68,109,88,68,121,116,52,117,10,105,78,43,74,118,57,116,120,48,73,118,52,68,75,111,51,48,79,98,83,88,56,89,122,57,86,102,119,89,119,118,51,107,113,115,87,75,102,118,89,68,106,79,51,52,116,50,121,55,105,72,116,87,120,117,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,113,82,116,90,54,90,54,81,112,43,10,75,55,90,67,69,57,101,119,88,84,69,51,73,90,74,67,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,111,82,106,86,53,112,82,88,56,97,108,121,112,68,99,54,53,105,78,48,72,109,86,105,54,115,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,69,53,54,89,49,75,56,10,50,57,115,80,69,98,97,112,111,70,48,117,119,87,54,71,77,66,105,114,122,70,49,118,53,112,50,114,98,88,115,49,79,118,105,101,65,105,66,101,117,72,75,97,119,112,114,77,101,50,76,88,73,69,113,77,86,109,52,51,43,75,51,75,10,69,77,49,117,103,83,120,89,121,109,53,56,78,80,77,47,102,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,192,240,154,242,83,227,170,146,79,26,255,126,203,231,0,112,89,46,179,235,201,84,76,48,110,41,153,121,16,67,176,146,2,32,118,234,131,82,178,111,163,80,156,104,201,241,247,224,168,33,26,164,181,5,89,167,226,56,168,115,183,217,244,52,255,46]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,148,105,253,107,202,246,15,163,45,71,202,92,158,154,209,118,72,99,112,33,175,124,103,51,189,41,79,52,20,113,171,157,2,32,51,244,161,203,26,163,148,130,245,190,72,159,233,73,43,238,4,151,150,78,255,203,181,103,59,24,32,180,176,172,178,236]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:43:00.152Z"",""channel_id"":""mychannel"",""tx_id"":""989b44cb30fc396456424aa556c6e166ed2dc542e7cd2d2615639d4bdffc3471"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[147,206,92,206,31,255,62,201,62,187,243,98,176,113,60,177,160,69,3,124,255,46,128,61]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,100,72,122,48,109,76,48,103,65,117,120,99,68,65,99,114,119,110,119,87,75,116,69,74,84,49,89,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,88,86,119,119,101,75,57,105,77,108,86,107,43,87,102,74,110,51,50,85,54,104,89,49,10,81,70,48,70,68,79,109,115,114,122,85,72,82,97,49,112,78,69,68,53,77,111,110,98,49,117,71,86,104,84,76,80,114,118,122,73,79,111,75,90,98,78,115,88,88,50,70,89,112,77,112,90,108,75,119,76,114,110,121,80,105,113,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,52,65,55,104,10,111,77,86,115,74,48,101,108,101,73,75,104,103,81,66,54,70,113,47,121,85,90,73,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,43,104,71,78,88,109,108,70,102,120,113,88,75,107,78,122,114,109,73,51,81,101,90,87,10,76,113,119,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,78,106,73,121,78,87,85,53,89,50,90,105,78,106,103,121,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,85,73,57,97,43,82,10,105,119,70,119,71,108,53,86,51,90,69,67,78,76,67,88,47,119,109,75,87,90,102,97,53,73,69,81,100,86,118,121,86,113,117,108,65,105,65,100,49,110,69,47,97,78,66,85,119,101,106,118,55,50,50,121,78,86,103,52,100,48,80,90,10,82,90,68,121,66,104,120,50,110,102,75,83,89,81,80,53,98,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[147,206,92,206,31,255,62,201,62,187,243,98,176,113,60,177,160,69,3,124,255,46,128,61]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[253,236,51,109,215,30,255,147,185,200,69,205,119,194,255,5,135,63,55,21,160,218,182,189,186,116,1,92,201,180,6,237]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,68,52,99,66,72,99,83,82,97,89,76,56,57,118,43,84,49,98,69,54,70,49,109,76,81,75,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,122,78,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,48,77,68,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,65,108,53,53,72,98,73,66,113,66,78,85,98,107,101,112,105,119,84,88,98,52,68,109,88,68,121,116,52,117,10,105,78,43,74,118,57,116,120,48,73,118,52,68,75,111,51,48,79,98,83,88,56,89,122,57,86,102,119,89,119,118,51,107,113,115,87,75,102,118,89,68,106,79,51,52,116,50,121,55,105,72,116,87,120,117,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,113,82,116,90,54,90,54,81,112,43,10,75,55,90,67,69,57,101,119,88,84,69,51,73,90,74,67,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,80,111,82,106,86,53,112,82,88,56,97,108,121,112,68,99,54,53,105,78,48,72,109,86,105,54,115,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,69,53,54,89,49,75,56,10,50,57,115,80,69,98,97,112,111,70,48,117,119,87,54,71,77,66,105,114,122,70,49,118,53,112,50,114,98,88,115,49,79,118,105,101,65,105,66,101,117,72,75,97,119,112,114,77,101,50,76,88,73,69,113,77,86,109,52,51,43,75,51,75,10,69,77,49,117,103,83,120,89,121,109,53,56,78,80,77,47,102,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,219,44,43,182,42,211,38,125,225,25,103,230,182,170,68,37,100,157,181,180,39,0,218,210,225,114,33,17,126,39,84,76,2,32,82,44,40,89,166,170,172,53,246,23,199,110,124,195,86,191,54,155,67,4,14,91,221,252,65,191,97,82,11,128,181,58]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,106,67,67,65"'); -INSERT INTO "fabric_blocks_entry_rows" ("id", "block_num", "block_data") VALUES ('205,59,160,123,177,34,251,205,137,10,51,171,62,255,215,163,54,119,187,153,126,27,128,3,26,55,153,229,9,138,219,118', '5', '"{""decodedBlock"":{""header"":{""number"":{""low"":5,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[198,72,91,201,41,4,171,92,81,118,169,35,164,95,223,222,5,91,68,134,155,144,71,217,130,117,45,117,190,66,92,69]},""data_hash"":{""type"":""Buffer"",""data"":[205,59,160,123,177,34,251,205,137,10,51,171,62,255,215,163,54,119,187,153,126,27,128,3,26,55,153,229,9,138,219,118]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,139,18,211,255,213,5,229,34,119,92,110,142,227,214,134,135,90,193,209,145,53,78,84,121,101,128,11,10,0,135,0,105,2,32,86,211,54,85,109,181,136,155,124,98,187,208,205,86,205,151,96,233,0,194,230,109,226,120,191,24,114,205,222,30,144,171]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:18.252Z"",""channel_id"":""mychannel"",""tx_id"":""58613e966d7dfbef9ff062d2ce95f1da18e80bdef89321eca12cf7f5ec648301"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,12,18,10,95,108,105,102,101,99,121,99,108,101]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,73,52,85,105,48,52,68,100,110,107,83,98,53,55,100,82,53,111,112,118,114,43,102,104,106,67,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,81,48,122,112,81,54,100,111,108,51,85,78,77,115,122,78,114,117,90,57,119,84,98,67,73,50,114,52,78,66,10,89,48,116,68,116,52,51,98,111,81,50,78,87,67,72,109,103,103,85,107,66,101,109,79,54,68,52,122,85,43,109,106,86,85,85,65,86,54,114,76,105,121,69,53,104,47,113,102,108,53,71,87,106,47,54,53,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,74,102,87,79,105,76,55,49,117,10,85,122,109,82,50,104,98,97,76,118,52,49,49,119,99,87,109,122,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,82,83,52,98,47,65,86,98,89,57,52,117,74,51,117,51,83,118,112,43,113,97,65,109,122,114,114,68,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,122,78,50,69,120,77,106,108,107,89,106,69,121,78,50,73,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,67,79,99,116,52,51,56,52,53,51,83,10,89,112,72,98,66,51,102,121,114,56,78,110,49,104,104,104,56,77,76,53,115,106,55,110,119,122,107,83,120,85,77,67,73,65,47,86,67,87,88,115,77,73,102,88,105,85,70,70,80,66,102,65,108,82,120,81,65,108,99,108,114,122,72,118,10,43,75,55,89,56,119,78,102,89,115,113,121,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[22,86,115,5,143,10,58,140,48,164,252,233,3,129,209,226,27,145,142,129,18,119,112,205]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,73,52,85,105,48,52,68,100,110,107,83,98,53,55,100,82,53,111,112,118,114,43,102,104,106,67,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,81,48,122,112,81,54,100,111,108,51,85,78,77,115,122,78,114,117,90,57,119,84,98,67,73,50,114,52,78,66,10,89,48,116,68,116,52,51,98,111,81,50,78,87,67,72,109,103,103,85,107,66,101,109,79,54,68,52,122,85,43,109,106,86,85,85,65,86,54,114,76,105,121,69,53,104,47,113,102,108,53,71,87,106,47,54,53,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,83,74,102,87,79,105,76,55,49,117,10,85,122,109,82,50,104,98,97,76,118,52,49,49,119,99,87,109,122,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,82,83,52,98,47,65,86,98,89,57,52,117,74,51,117,51,83,118,112,43,113,97,65,109,122,114,114,68,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,122,78,50,69,120,77,106,108,107,89,106,69,121,78,50,73,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,102,67,79,99,116,52,51,56,52,53,51,83,10,89,112,72,98,66,51,102,121,114,56,78,110,49,104,104,104,56,77,76,53,115,106,55,110,119,122,107,83,120,85,77,67,73,65,47,86,67,87,88,115,77,73,102,88,105,85,70,70,80,66,102,65,108,82,120,81,65,108,99,108,114,122,72,118,10,43,75,55,89,56,119,78,102,89,115,113,121,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[22,86,115,5,143,10,58,140,48,164,252,233,3,129,209,226,27,145,142,129,18,119,112,205]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":0,""typeString"":""UNDEFINED"",""input"":{""args"":[{""type"":""Buffer"",""data"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{""type"":""Buffer"",""data"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""_lifecycle""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[188,159,166,186,198,192,138,21,223,86,162,185,61,163,59,253,190,65,28,213,188,28,4,217,186,82,35,158,33,221,50,135]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence""},{""key"":""namespaces/metadata/basic""}],""range_queries_info"":[],""writes"":[{""key"":""namespaces/fields/basic/Collections"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,0]}},{""key"":""namespaces/fields/basic/EndorsementInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{""key"":""namespaces/fields/basic/Sequence"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[8,1]}},{""key"":""namespaces/fields/basic/ValidationInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{""key"":""namespaces/metadata/basic"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[{""collection_name"":""_implicit_org_Org1MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}},{""collection_name"":""_implicit_org_Org2MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}}]},{""namespace"":""lscc"",""rwset"":{""reads"":[{""key"":""basic""}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""_lifecycle"",""version"":""syscc""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,185,123,249,202,126,20,13,74,180,1,227,139,115,3,109,239,145,93,113,24,3,131,41,24,224,53,170,170,61,88,2,178,2,32,44,255,63,99,157,202,26,71,127,123,45,251,171,138,116,176,30,116,57,38,51,85,158,29,184,246,2,229,107,91,75,33]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,238,227,62,222,126,150,126,128,185,220,36,208,179,7,212,70,185,15,196,17,70,251,15,164,123,60,196,93,11,152,255,72,2,32,67,32,205,190,209,193,134,122,220,247,43,29,188,127,196,84,241,20,16,82,255,102,110,122,237,177,38,154,108,121,157,64]}}]}}}]}}}]},""metadata"":{""metadata"":[{""value"":{""type"":""Buffer"",""data"":[10,2,8,2,18,9,10,7,10,1,1,16,2,24,7]},""signatures"":[{""signature_header"":{""creator"":{""mspid"":""OrdererMSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,114,84,67,67,65,108,83,103,65,119,73,66,65,103,73,85,83,77,49,80,56,105,69,120,70,71,70,121,56,86,65,83,47,53,74,110,109,50,53,49,68,80,77,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,89,106,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,69,84,65,80,66,103,78,86,66,65,103,84,67,69,53,108,100,121,66,90,98,51,74,114,77,82,69,119,68,119,89,68,86,81,81,72,69,119,104,79,90,88,99,103,10,87,87,57,121,97,122,69,85,77,66,73,71,65,49,85,69,67,104,77,76,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,70,122,65,86,66,103,78,86,66,65,77,84,68,109,78,104,76,109,86,52,89,87,49,119,98,71,85,117,10,89,50,57,116,77,66,52,88,68,84,73,122,77,68,73,121,78,68,65,51,78,68,103,119,77,70,111,88,68,84,73,48,77,68,73,121,78,68,65,51,78,84,77,119,77,70,111,119,89,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,10,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,82,81,119,69,103,89,68,86,81,81,75,69,119,116,73,101,88,66,108,99,109,120,108,90,71,100,108,10,99,106,69,81,77,65,52,71,65,49,85,69,67,120,77,72,98,51,74,107,90,88,74,108,99,106,69,81,77,65,52,71,65,49,85,69,65,120,77,72,98,51,74,107,90,88,74,108,99,106,66,90,77,66,77,71,66,121,113,71,83,77,52,57,10,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,79,117,101,77,116,49,102,86,88,50,69,90,119,107,73,70,107,89,122,51,80,117,68,97,105,102,83,100,56,88,69,99,90,109,55,65,119,54,90,86,107,88,83,10,47,48,79,56,115,51,116,87,54,88,106,75,113,84,70,82,111,83,80,87,75,82,65,56,82,112,81,106,85,111,65,84,86,115,55,69,43,104,83,80,74,106,109,106,103,101,107,119,103,101,89,119,68,103,89,68,86,82,48,80,65,81,72,47,10,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,69,50,80,86,53,77,66,88,106,65,102,83,78,118,72,116,106,86,113,79,54,54,10,102,88,121,50,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,79,120,66,66,119,74,54,65,87,50,113,55,52,103,65,122,43,73,49,118,113,73,54,69,109,55,112,77,67,107,71,65,49,85,100,69,81,81,105,77,67,67,67,10,69,50,57,121,90,71,86,121,90,88,73,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,50,67,67,87,120,118,89,50,70,115,97,71,57,122,100,68,66,98,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,80,101,121,74,104,10,100,72,82,121,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,109,57,121,10,90,71,86,121,90,88,73,105,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,98,51,74,107,90,88,74,108,99,105,74,57,102,84,65,75,66,103,103,113,104,107,106,79,80,81,81,68,65,103,78,72,65,68,66,69,65,105,66,81,10,79,76,116,121,110,105,98,109,77,73,101,107,73,52,83,48,116,54,89,80,49,118,112,82,51,70,55,83,115,52,102,50,100,119,84,72,79,81,86,103,119,81,73,103,71,86,115,70,70,70,106,106,112,120,79,76,97,102,116,83,53,109,77,68,10,53,112,107,78,73,75,48,48,78,73,88,119,65,101,117,74,84,89,113,118,50,81,77,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[249,76,6,210,110,245,173,23,38,215,202,169,64,120,8,113,235,143,70,44,128,75,160,118]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,249,153,210,255,137,147,98,37,72,214,215,245,54,10,92,38,157,190,79,82,92,221,73,245,208,221,146,224,235,70,51,13,2,32,105,159,17,164,129,27,201,147,81,176,106,141,102,7,66,108,213,7,158,228,254,35,58,92,195,95,68,12,4,95,67,67]}}]},{},[0],{},{""type"":""Buffer"",""data"":[10,32,54,147,116,176,55,31,129,3,24,192,93,60,126,158,55,195,105,28,119,250,178,216,175,185,113,5,113,253,100,116,228,144]}]}}}"'); -INSERT INTO "fabric_blocks_entry_rows" ("id", "block_num", "block_data") VALUES ('80,232,219,19,101,21,13,75,87,34,118,125,16,138,187,64,201,219,178,93,39,180,14,7,199,219,57,91,253,53,92,176', '6', '"{""decodedBlock"":{""header"":{""number"":{""low"":6,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[202,237,179,216,79,200,73,96,99,83,1,226,0,23,205,163,244,204,35,168,215,196,212,207,244,102,185,73,189,36,251,152]},""data_hash"":{""type"":""Buffer"",""data"":[80,232,219,19,101,21,13,75,87,34,118,125,16,138,187,64,201,219,178,93,39,180,14,7,199,219,57,91,253,53,92,176]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,132,7,233,233,172,217,193,119,100,139,157,54,162,215,50,204,82,143,8,69,27,66,103,228,200,99,69,249,251,121,109,215,2,32,102,78,208,101,180,85,64,246,3,78,163,192,153,30,216,85,33,44,78,202,27,114,255,217,199,129,136,153,19,220,178,38]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:22.512Z"",""channel_id"":""mychannel"",""tx_id"":""f8575550109d29f1e0da41d7d1e057c5e10c384fc2aba9e43be2d7c4aee047f4"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[135,139,121,2,212,42,132,175,112,75,119,143,222,46,251,177,106,84,57,52,188,76,177,169]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[135,139,121,2,212,42,132,175,112,75,119,143,222,46,251,177,106,84,57,52,188,76,177,169]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[175,123,136,118,225,87,179,53,213,201,57,222,136,70,49,163,171,117,101,117,55,19,165,218,238,199,221,1,22,4,235,24]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,70,147,94,203,215,170,152,192,197,213,227,119,101,5,157,48,232,229,11,103,45,138,134,187,109,212,85,53,97,94,2,91,2,32,63,169,74,17,125,113,177,179,27,34,192,105,155,59,178,236,78,250,191,212,169,137,141,195,103,52,63,110,48,85,210,9]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,88,194,170,226,65,146,78,237,153,105,63,217,203,6,29,199,51,250,241,36,133,104,97,57,208,194,9,34,8,157,186,128,2,32,26,77,252,165,219,96,63,1,150,38,206,40,3,20,187,145,118,181,211,218,187,99,243,177,244,210,255,112,153,101,199,51]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,145,51,60,161,110,118,184,247,9,154,52,194,145,200,34,146,179,233,198,195,25,23,65,160,220,27,149,155,226,63,189,84,2,32,35,32,83,10,125,188,13,139,102,4,103,23,90,171,141,69,114,242,56,77,224,215,90,219,232,210,71,33,102,93,241,213]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:25.392Z"",""channel_id"":""mychannel"",""tx_id"":""6073b7237a8a5bb34268c493c2d51a3d00df9951821abf1d36cc59cc72fc8cfe"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[208,172,84,101,173,140,80,23,24,119,31,119,1,25,229,110,52,177,110,71,247,106,84,53]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[208,172,84,101,173,140,80,23,24,119,31,119,1,25,229,110,52,177,110,71,247,106,84,53]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[248,229,169,223,0,18,218,140,251,171,108,154,254,140,118,227,73,26,43,107,155,92,165,22,107,138,94,102,131,173,26,171]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,176,170,12,173,244,235,118,218,135,66,160,241,210,79,133,14,22,30,217,89,4,192,99,211,134,86,245,235,135,125,32,178,2,32,1,225,94,15,188,134,8,190,33,81,220,244,114,234,205,34,226,186,235,160,129,146,159,110,97,143,7,126,227,18,45,247]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103"'); -INSERT INTO "fabric_blocks_entry_rows" ("id", "block_num", "block_data") VALUES ('241,190,232,255,90,116,232,132,175,181,34,182,97,52,74,5,116,2,87,189,100,196,0,178,160,228,71,22,244,27,17,178', '7', '"{""decodedBlock"":{""header"":{""number"":{""low"":7,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[136,112,138,249,46,195,8,68,231,245,2,229,137,243,66,174,23,253,46,82,230,204,58,232,197,137,150,76,23,186,129,97]},""data_hash"":{""type"":""Buffer"",""data"":[241,190,232,255,90,116,232,132,175,181,34,182,97,52,74,5,116,2,87,189,100,196,0,178,160,228,71,22,244,27,17,178]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,237,78,57,176,239,182,238,172,172,58,246,250,179,71,198,136,70,216,59,191,216,147,244,87,184,126,83,242,105,172,31,53,2,32,37,205,21,168,45,205,51,50,195,146,244,228,78,72,219,254,20,88,119,107,45,109,145,151,118,62,15,2,101,163,239,224]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:26.947Z"",""channel_id"":""mychannel"",""tx_id"":""0f44f13f2a7f165f22021fb2a50521e08357b5b6d67f9054da9baf5392d5ef5d"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[79,176,152,133,125,63,221,26,203,239,161,9,140,68,226,67,144,109,209,178,10,43,135,197]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[79,176,152,133,125,63,221,26,203,239,161,9,140,68,226,67,144,109,209,178,10,43,135,197]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[208,165,95,6,162,15,196,149,89,98,104,68,187,61,228,200,8,161,231,229,122,184,95,93,129,62,105,129,206,185,93,234]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,25,207,222,10,168,171,46,236,136,57,83,66,24,49,218,168,147,97,213,128,136,250,63,47,83,117,37,222,233,178,71,73,2,32,113,33,113,52,252,60,20,209,239,153,181,102,146,212,173,38,45,176,32,13,71,220,81,165,2,239,227,81,95,185,247,219]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,92,178,98,57,242,243,202,191,201,62,60,215,73,125,19,225,249,100,6,127,205,226,219,187,252,142,77,133,5,183,131,72,2,32,52,37,34,234,208,98,6,88,191,113,121,194,119,123,207,122,188,91,4,88,97,221,179,65,195,5,37,69,90,151,124,225]}}]}}}]}}}]},""metadata"":{""metadata"":[{""value"":{""type"":""Buffer"",""data"":[10,2,8,2,18,9,10,7,10,1,1,16,2,24,9]},""signatures"":[{""signature_header"":{""creator"":{""mspid"":""OrdererMSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,114,84,67,67,65,108,83,103,65,119,73,66,65,103,73,85,83,77,49,80,56,105,69,120,70,71,70,121,56,86,65,83,47,53,74,110,109,50,53,49,68,80,77,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,89,106,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,69,84,65,80,66,103,78,86,66,65,103,84,67,69,53,108,100,121,66,90,98,51,74,114,77,82,69,119,68,119,89,68,86,81,81,72,69,119,104,79,90,88,99,103,10,87,87,57,121,97,122,69,85,77,66,73,71,65,49,85,69,67,104,77,76,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,70,122,65,86,66,103,78,86,66,65,77,84,68,109,78,104,76,109,86,52,89,87,49,119,98,71,85,117,10,89,50,57,116,77,66,52,88,68,84,73,122,77,68,73,121,78,68,65,51,78,68,103,119,77,70,111,88,68,84,73,48,77,68,73,121,78,68,65,51,78,84,77,119,77,70,111,119,89,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,10,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,82,81,119,69,103,89,68,86,81,81,75,69,119,116,73,101,88,66,108,99,109,120,108,90,71,100,108,10,99,106,69,81,77,65,52,71,65,49,85,69,67,120,77,72,98,51,74,107,90,88,74,108,99,106,69,81,77,65,52,71,65,49,85,69,65,120,77,72,98,51,74,107,90,88,74,108,99,106,66,90,77,66,77,71,66,121,113,71,83,77,52,57,10,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,79,117,101,77,116,49,102,86,88,50,69,90,119,107,73,70,107,89,122,51,80,117,68,97,105,102,83,100,56,88,69,99,90,109,55,65,119,54,90,86,107,88,83,10,47,48,79,56,115,51,116,87,54,88,106,75,113,84,70,82,111,83,80,87,75,82,65,56,82,112,81,106,85,111,65,84,86,115,55,69,43,104,83,80,74,106,109,106,103,101,107,119,103,101,89,119,68,103,89,68,86,82,48,80,65,81,72,47,10,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,72,69,50,80,86,53,77,66,88,106,65,102,83,78,118,72,116,106,86,113,79,54,54,10,102,88,121,50,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,79,120,66,66,119,74,54,65,87,50,113,55,52,103,65,122,43,73,49,118,113,73,54,69,109,55,112,77,67,107,71,65,49,85,100,69,81,81,105,77,67,67,67,10,69,50,57,121,90,71,86,121,90,88,73,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,50,67,67,87,120,118,89,50,70,115,97,71,57,122,100,68,66,98,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,80,101,121,74,104,10,100,72,82,121,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,109,57,121,10,90,71,86,121,90,88,73,105,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,98,51,74,107,90,88,74,108,99,105,74,57,102,84,65,75,66,103,103,113,104,107,106,79,80,81,81,68,65,103,78,72,65,68,66,69,65,105,66,81,10,79,76,116,121,110,105,98,109,77,73,101,107,73,52,83,48,116,54,89,80,49,118,112,82,51,70,55,83,115,52,102,50,100,119,84,72,79,81,86,103,119,81,73,103,71,86,115,70,70,70,106,106,112,120,79,76,97,102,116,83,53,109,77,68,10,53,112,107,78,73,75,48,48,78,73,88,119,65,101,117,74,84,89,113,118,50,81,77,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[81,198,121,53,67,199,200,180,18,25,159,186,59,249,193,99,190,35,236,195,96,62,151,153]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,68,236,215,194,181,219,110,113,132,248,6,61,121,39,105,19,120,211,183,58,33,20,206,119,254,32,144,118,76,82,134,7,2,32,96,108,208,8,9,73,20,219,208,143,139,158,146,200,84,176,159,236,104,215,207,3,241,123,138,189,182,21,83,102,38,202]}}]},{},[0],{},{""type"":""Buffer"",""data"":[10,32,142,180,91,164,51,80,139,60,162,167,162,211,155,6,149,223,74,18,209,198,252,68,27,48,171,134,27,88,156,128,130,162]}]}}}"'); -INSERT INTO "fabric_blocks_entry_rows" ("id", "block_num", "block_data") VALUES ('57,193,86,188,19,64,145,154,98,228,32,203,89,62,90,135,209,167,206,48,97,156,158,242,16,168,93,124,202,35,28,33', '8', '"{""decodedBlock"":{""header"":{""number"":{""low"":8,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[215,215,56,220,1,131,180,52,147,37,250,118,204,125,198,116,71,194,118,178,76,61,209,213,217,128,163,119,118,78,79,143]},""data_hash"":{""type"":""Buffer"",""data"":[57,193,86,188,19,64,145,154,98,228,32,203,89,62,90,135,209,167,206,48,97,156,158,242,16,168,93,124,202,35,28,33]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,202,11,239,239,164,17,165,31,34,190,199,99,52,47,239,35,165,239,120,17,218,126,229,159,113,210,101,22,52,147,130,103,2,32,126,135,196,89,251,253,173,243,182,112,197,134,128,167,58,10,99,91,226,168,27,211,4,65,171,52,170,127,193,105,182,159]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:29.218Z"",""channel_id"":""mychannel"",""tx_id"":""553e0bed7098738c8d790c7804124b5ae4026594513ea3a93e1198de43f609c4"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[241,73,159,200,55,45,5,242,119,210,95,140,179,180,199,124,230,234,126,12,111,239,104,228]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[241,73,159,200,55,45,5,242,119,210,95,140,179,180,199,124,230,234,126,12,111,239,104,228]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[94,101,212,181,75,142,193,217,74,172,147,124,210,28,214,144,125,135,182,161,13,167,192,110,219,156,120,102,64,155,207,65]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,80,131,144,12,171,193,108,231,184,228,62,198,96,132,17,5,198,193,197,60,46,206,127,26,128,111,188,114,56,133,97,54,2,32,2,237,184,172,214,231,97,179,108,107,172,160,235,49,66,234,15,21,228,140,150,88,202,141,131,221,116,9,73,177,148,176]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,218,29,105,245,25,46,105,11,2,63,119,76,99,40,73,232,247,183,173,59,176,15,69,251,123,88,195,128,23,205,196,154,2,32,38,10,233,36,32,185,247,213,98,249,169,13,129,45,152,29,193,46,27,59,87,13,113,82,54,91,31,199,56,40,29,199]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,13,48,79,106,143,66,119,158,207,189,173,253,22,205,102,3,48,57,57,48,164,70,61,161,131,148,251,67,223,171,83,176,2,32,93,168,11,94,239,213,207,255,157,255,3,150,154,164,84,182,189,63,150,36,0,11,4,230,164,229,207,137,228,146,107,0]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:30.749Z"",""channel_id"":""mychannel"",""tx_id"":""12e699cbf2708778e4a4f35b9a1058ba4f5bf7e48023df43706ef2fe1e3c3c79"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[69,51,186,83,226,253,78,61,64,27,167,162,180,45,210,177,150,38,251,49,95,60,167,0]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[69,51,186,83,226,253,78,61,64,27,167,162,180,45,210,177,150,38,251,49,95,60,167,0]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[184,114,183,62,22,154,244,139,28,66,136,115,61,241,164,245,103,11,5,15,120,183,238,160,201,152,254,252,34,162,254,12]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,17,113,229,102,224,80,76,204,179,46,156,2,94,55,186,154,47,90,54,220,242,254,242,136,13,246,224,233,225,238,84,185,2,32,42,127,68,114,250,239,34,237,124,90,170,184,10,98,185,43,93,3,8,158,205,75,149,175,23,105,55,22,67,140,87,108]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,1"'); -INSERT INTO "fabric_blocks_entry_rows" ("id", "block_num", "block_data") VALUES ('198,169,106,137,86,110,103,51,34,219,178,249,85,63,240,54,216,4,235,46,192,26,77,64,35,143,121,176,15,24,154,22', '9', '"{""decodedBlock"":{""header"":{""number"":{""low"":9,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[68,124,189,181,200,83,103,84,244,68,130,169,112,218,199,115,115,253,216,93,218,24,211,139,58,205,77,59,220,46,239,137]},""data_hash"":{""type"":""Buffer"",""data"":[198,169,106,137,86,110,103,51,34,219,178,249,85,63,240,54,216,4,235,46,192,26,77,64,35,143,121,176,15,24,154,22]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,184,6,91,55,139,191,45,119,72,107,123,88,64,130,164,22,69,52,66,21,77,233,94,159,9,91,92,56,163,230,192,251,2,32,65,32,215,131,109,197,205,15,216,98,244,43,106,16,179,140,29,154,23,126,51,60,52,173,171,136,22,171,247,40,209,66]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:32.541Z"",""channel_id"":""mychannel"",""tx_id"":""21d58641997009b08d8660da5dc7a829d5936c05a232288212422148b13102e0"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[229,115,23,220,135,87,39,70,115,211,132,29,47,29,200,132,156,79,175,41,123,36,179,114]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[229,115,23,220,135,87,39,70,115,211,132,29,47,29,200,132,156,79,175,41,123,36,179,114]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[162,126,207,209,147,201,46,209,85,164,209,198,83,227,123,94,186,9,162,155,172,254,95,178,201,64,255,4,56,147,227,250]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,78,211,207,229,99,163,10,61,170,73,33,51,216,77,157,217,22,139,242,49,178,155,26,141,49,160,151,92,113,8,186,179,2,32,76,142,218,218,229,98,84,216,42,167,235,205,226,226,144,133,149,192,55,122,150,146,86,177,196,248,219,178,126,81,54,176]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82,53,89,76,55,104,84,122,115,49,80,69,82,83,120,78,85,102,97,57,99,83,105,52,86,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,119,78,122,81,52,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,119,78,122,85,122,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,100,68,65,97,117,107,66,87,67,67,102,78,111,121,104,68,107,51,49,50,85,109,112,101,71,122,101,110,83,83,107,48,105,86,76,86,10,106,79,122,110,71,112,115,103,114,68,103,69,101,122,90,100,51,113,55,81,88,116,115,75,70,83,117,78,48,120,113,98,54,73,109,98,116,79,113,113,81,57,47,57,54,114,78,104,79,113,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,114,105,87,103,90,97,98,82,78,114,98,54,109,102,75,122,10,52,74,89,81,81,86,112,48,89,67,69,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,85,117,71,47,119,70,87,50,80,101,76,105,100,55,116,48,114,54,102,113,109,103,74,115,54,54,119,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,84,103,70,107,81,106,49,112,122,97,89,89,10,99,72,121,108,75,74,119,43,52,109,74,85,66,55,51,115,121,73,118,99,65,52,69,103,98,83,77,113,84,112,85,67,73,66,76,106,86,65,53,87,48,81,49,113,120,83,111,69,118,90,86,115,115,76,118,77,56,118,76,108,66,88,101,83,10,116,81,76,84,101,104,105,76,82,51,119,49,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,248,177,95,113,193,52,163,164,145,249,234,250,188,240,55,76,73,75,185,71,235,224,39,144,200,88,81,39,246,20,253,56,2,32,113,177,116,63,28,182,73,187,33,48,190,70,247,90,56,51,208,0,207,217,118,28,203,18,94,241,169,10,129,73,224,150]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,249,199,111,1,66,65,107,6,55,47,250,139,173,141,146,66,69,104,214,0,166,7,76,138,71,241,131,67,144,77,181,146,2,32,2,164,152,40,184,30,182,28,145,141,53,112,64,84,83,121,38,96,108,153,212,227,124,157,153,244,80,211,213,250,194,191]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T07:55:34.437Z"",""channel_id"":""mychannel"",""tx_id"":""22098c7688c5dd159069515af0a7c31949c1de01916d9f3e7feff2acb4c40f38"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[249,19,66,127,237,65,18,47,70,22,51,157,63,21,83,103,125,90,109,37,94,32,77,22]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,82,118,47,75,43,65,87,80,120,81,76,86,50,78,74,103,80,79,117,68,56,78,102,79,70,86,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,51,117,106,109,50,109,109,112,97,82,115,54,114,57,55,52,112,110,67,100,66,84,88,66,10,120,51,73,107,72,122,117,100,56,100,116,113,117,100,90,97,110,74,120,97,50,109,98,47,72,55,98,90,102,53,98,66,78,102,108,102,68,117,118,100,65,108,119,73,54,71,86,70,49,57,109,119,70,114,108,81,110,109,98,53,65,54,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,102,117,108,97,10,79,102,98,55,57,120,102,54,121,55,43,106,50,114,86,121,90,102,68,85,87,57,56,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,89,120,109,97,120,47,107,77,117,113,85,107,89,109,88,49,120,56,109,73,85,65,114,119,10,107,65,73,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,77,122,100,104,77,84,73,53,90,71,73,120,77,106,100,105,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,69,119,78,54,10,115,101,100,57,55,102,86,80,85,113,55,66,56,52,106,105,106,72,102,80,69,117,107,73,113,119,109,104,98,105,80,68,47,100,85,83,120,65,73,103,83,79,55,100,56,112,105,79,57,68,113,84,75,72,67,89,67,106,112,57,51,70,98,49,10,48,57,77,108,80,43,75,83,97,43,70,86,80,49,68,97,66,100,115,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[249,19,66,127,237,65,18,47,70,22,51,157,63,21,83,103,125,90,109,37,94,32,77,22]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[95,245,154,200,183,213,30,187,232,6,35,183,247,33,95,56,102,19,131,188,189,198,153,102,8,116,62,160,103,218,43,14]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,66,87,99,83,107,106,116,116,70,52,117,80,79,43,107,77,110,89,101,112,75,49,43,79,120,56,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,68,99,48,79,68,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,68,99,49,77,122,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,66,115,108,120,87,67,101,65,118,97,122,65,75,51,57,70,97,52,84,107,57,43,69,98,72,82,65,113,72,117,43,10,74,56,86,110,88,120,109,105,56,74,49,43,103,76,110,110,104,103,84,70,73,47,50,112,100,43,115,77,57,57,100,103,81,120,90,112,107,51,117,54,75,120,86,114,84,73,83,71,77,119,115,78,119,80,83,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,56,73,86,69,121,71,43,115,76,52,10,70,74,120,99,120,113,57,109,75,79,55,50,85,111,119,82,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,71,77,90,109,115,102,53,68,76,113,108,74,71,74,108,57,99,102,74,105,70,65,75,56,74,65,67,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,71,52,50,81,51,89,98,10,71,50,43,84,50,88,57,82,89,47,87,104,75,78,53,78,109,77,49,47,99,109,85,77,57,85,98,103,65,69,75,101,57,69,81,99,65,105,66,65,73,76,80,55,83,113,119,43,113,102,68,84,87,90,97,98,57,99,68,56,70,72,119,84,10,87,51,88,118,70,87,52,74,116,103,55,70,71,69,54,49,119,103,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,12,115,243,81,41,232,134,53,210,114,102,224,202,136,22,100,145,195,67,247,4,115,140,230,12,192,142,91,161,23,59,101,2,32,34,152,93,156,94,90,228,112,191,94,46,127,216,11,180,156,233,6,85,46,92,233,166,142,217,105,199,0,76,150,102,3]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,74,82"'); -INSERT INTO "fabric_blocks_entry_rows" ("id", "block_num", "block_data") VALUES ('059726dc5bb72b2a3a76f8cc015c7712e5b07c81c06f206c30aa71536fcd582e', '5', '"{""decodedBlock"":{""header"":{""number"":{""low"":5,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[93,153,204,64,255,30,182,61,144,80,153,138,26,71,177,222,166,133,41,113,51,209,197,44,121,131,233,52,102,119,6,231]},""data_hash"":{""type"":""Buffer"",""data"":[5,151,38,220,91,183,43,42,58,118,248,204,1,92,119,18,229,176,124,129,192,111,32,108,48,170,113,83,111,205,88,46]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,142,122,244,255,70,236,68,208,251,156,125,40,6,176,21,193,118,85,186,77,222,196,63,11,28,17,65,82,192,35,115,194,2,32,83,150,3,200,228,135,69,50,139,34,96,42,106,240,254,24,177,52,162,242,44,247,198,189,81,182,227,224,122,225,204,154]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T10:38:27.375Z"",""channel_id"":""mychannel"",""tx_id"":""e53c09a7e41e247754197cde297a8bbc64f848b49e2e4b4644364ec04b7ff640"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,12,18,10,95,108,105,102,101,99,121,99,108,101]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,90,82,106,97,83,116,72,88,83,57,110,97,108,111,112,47,52,80,65,56,52,72,86,52,113,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,120,77,68,77,120,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,120,77,68,77,50,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,83,113,116,52,121,84,106,43,47,97,83,98,65,68,48,97,48,114,121,48,86,87,66,121,101,51,122,118,50,10,43,56,113,113,48,83,75,77,102,50,65,101,111,55,57,71,81,57,78,85,109,100,89,81,122,90,85,78,88,100,82,66,107,121,48,102,88,71,99,80,49,100,71,57,50,69,50,106,70,117,101,100,117,81,122,80,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,82,104,97,85,84,82,74,122,115,43,10,99,57,50,50,122,86,51,119,51,122,84,115,104,72,89,121,71,106,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,82,72,99,53,90,54,105,88,76,105,43,65,53,122,115,98,107,43,108,57,99,78,111,52,113,47,109,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,52,78,87,73,121,89,106,77,50,90,71,73,120,79,71,77,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,85,65,106,115,48,118,81,89,77,97,102,69,10,54,110,104,122,81,68,105,57,117,111,113,120,53,51,112,108,54,55,101,57,49,101,65,105,103,70,86,53,97,78,111,67,73,67,82,113,43,122,57,83,50,122,80,67,57,104,71,103,85,76,115,119,87,107,81,121,80,106,115,87,122,99,75,107,10,78,77,115,68,119,67,122,107,90,101,114,84,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[65,172,15,227,197,21,230,182,18,202,194,142,2,156,30,232,113,247,231,20,241,105,73,128]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,81,90,82,106,97,83,116,72,88,83,57,110,97,108,111,112,47,52,80,65,56,52,72,86,52,113,115,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,120,77,68,77,120,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,120,77,68,77,50,77,68,66,97,77,71,65,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,106,65,77,66,103,78,86,66,65,115,84,66,87,70,107,98,87,108,117,77,82,73,119,69,65,89,68,86,81,81,68,69,119,108,118,99,109,99,121,89,87,82,116,97,87,52,119,10,87,84,65,84,66,103,99,113,104,107,106,79,80,81,73,66,66,103,103,113,104,107,106,79,80,81,77,66,66,119,78,67,65,65,83,83,113,116,52,121,84,106,43,47,97,83,98,65,68,48,97,48,114,121,48,86,87,66,121,101,51,122,118,50,10,43,56,113,113,48,83,75,77,102,50,65,101,111,55,57,71,81,57,78,85,109,100,89,81,122,90,85,78,88,100,82,66,107,121,48,102,88,71,99,80,49,100,71,57,50,69,50,106,70,117,101,100,117,81,122,80,111,52,72,88,77,73,72,85,10,77,65,52,71,65,49,85,100,68,119,69,66,47,119,81,69,65,119,73,72,103,68,65,77,66,103,78,86,72,82,77,66,65,102,56,69,65,106,65,65,77,66,48,71,65,49,85,100,68,103,81,87,66,66,82,104,97,85,84,82,74,122,115,43,10,99,57,50,50,122,86,51,119,51,122,84,115,104,72,89,121,71,106,65,102,66,103,78,86,72,83,77,69,71,68,65,87,103,66,82,72,99,53,90,54,105,88,76,105,43,65,53,122,115,98,107,43,108,57,99,78,111,52,113,47,109,106,65,88,10,66,103,78,86,72,82,69,69,69,68,65,79,103,103,119,52,78,87,73,121,89,106,77,50,90,71,73,120,79,71,77,119,87,119,89,73,75,103,77,69,66,81,89,72,67,65,69,69,84,51,115,105,89,88,82,48,99,110,77,105,79,110,115,105,10,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,118,99,109,99,121,89,87,82,116,97,87,52,105,10,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,89,87,82,116,97,87,52,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,85,65,106,115,48,118,81,89,77,97,102,69,10,54,110,104,122,81,68,105,57,117,111,113,120,53,51,112,108,54,55,101,57,49,101,65,105,103,70,86,53,97,78,111,67,73,67,82,113,43,122,57,83,50,122,80,67,57,104,71,103,85,76,115,119,87,107,81,121,80,106,115,87,122,99,75,107,10,78,77,115,68,119,67,122,107,90,101,114,84,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[65,172,15,227,197,21,230,182,18,202,194,142,2,156,30,232,113,247,231,20,241,105,73,128]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":0,""typeString"":""UNDEFINED"",""input"":{""args"":[{""type"":""Buffer"",""data"":[67,111,109,109,105,116,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110]},{""type"":""Buffer"",""data"":[8,1,18,5,98,97,115,105,99,26,3,49,46,48]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""_lifecycle""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[9,194,68,47,186,176,104,90,126,217,181,119,30,4,188,147,56,193,17,169,170,53,110,114,107,23,27,105,19,11,82,87]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence""},{""key"":""namespaces/metadata/basic""}],""range_queries_info"":[],""writes"":[{""key"":""namespaces/fields/basic/Collections"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,0]}},{""key"":""namespaces/fields/basic/EndorsementInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,11,10,3,49,46,48,26,4,101,115,99,99]}},{""key"":""namespaces/fields/basic/Sequence"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[8,1]}},{""key"":""namespaces/fields/basic/ValidationInfo"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[18,42,10,4,118,115,99,99,18,34,18,32,47,67,104,97,110,110,101,108,47,65,112,112,108,105,99,97,116,105,111,110,47,69,110,100,111,114,115,101,109,101,110,116]}},{""key"":""namespaces/metadata/basic"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[10,19,67,104,97,105,110,99,111,100,101,68,101,102,105,110,105,116,105,111,110,18,8,83,101,113,117,101,110,99,101,18,15,69,110,100,111,114,115,101,109,101,110,116,73,110,102,111,18,14,86,97,108,105,100,97,116,105,111,110,73,110,102,111,18,11,67,111,108,108,101,99,116,105,111,110,115]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[{""collection_name"":""_implicit_org_Org1MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":3,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}},{""collection_name"":""_implicit_org_Org2MSP"",""hashed_rwset"":{""hashed_reads"":[{""key_hash"":{""type"":""Buffer"",""data"":[48,76,4,214,123,160,233,73,96,83,122,177,252,250,234,1,133,49,201,18,208,67,131,83,182,1,162,152,140,209,224,232]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[75,229,148,72,235,3,18,252,191,46,188,191,61,250,232,192,248,226,218,127,118,109,208,145,249,181,242,90,154,236,211,149]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[131,71,36,154,118,29,114,176,12,205,235,245,17,255,75,139,12,209,196,221,38,99,124,204,150,58,125,215,160,164,147,17]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}},{""key_hash"":{""type"":""Buffer"",""data"":[45,77,109,214,21,212,233,52,47,99,105,129,172,139,183,148,87,153,121,114,112,128,14,103,195,248,129,231,229,121,49,18]},""version"":{""block_num"":{""low"":4,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""hashed_writes"":[],""metadata_writes"":[]},""pvt_rwset_hash"":{""type"":""Buffer"",""data"":[]}}]},{""namespace"":""lscc"",""rwset"":{""reads"":[{""key"":""basic""}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""_lifecycle"",""version"":""syscc""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,84,98,68,112,113,86,83,104,111,110,112,85,51,50,108,85,55,68,117,86,117,48,106,85,105,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,74,88,73,57,66,109,85,116,53,66,51,88,117,113,122,79,100,56,48,101,74,105,86,106,66,101,71,56,86,54,110,10,102,82,54,103,89,77,103,83,70,84,116,55,108,114,71,118,80,57,111,108,70,76,90,99,82,90,81,121,100,57,55,122,75,86,109,80,87,100,47,47,51,67,79,69,68,43,75,78,80,71,76,105,84,43,75,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,66,73,86,56,82,83,49,112,52,70,10,66,52,120,82,87,83,65,86,97,85,81,109,74,114,65,48,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,67,48,87,122,54,81,104,77,77,43,120,69,109,56,47,49,105,78,67,52,102,111,79,48,103,84,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,43,117,119,100,117,107,10,121,55,100,82,51,90,79,55,79,112,113,47,79,87,75,51,43,100,120,115,48,84,51,117,51,105,102,49,48,85,105,113,90,104,53,72,65,105,66,48,68,69,66,53,85,87,79,116,122,69,113,89,70,98,69,73,71,119,103,116,83,66,75,109,10,66,85,76,99,66,104,56,85,47,113,120,74,52,117,108,83,87,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,158,175,253,218,80,189,142,68,254,146,116,249,27,35,54,121,191,93,58,103,146,108,47,6,254,208,222,50,177,99,223,33,2,32,73,64,164,84,168,148,13,71,123,75,135,28,104,139,26,147,4,252,208,251,113,44,116,150,109,219,12,74,154,45,157,96]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,74,107,76,85,89,48,109,90,82,51,53,55,56,67,71,86,115,122,70,120,121,79,74,65,102,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,120,77,68,77,120,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,120,77,68,77,50,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,69,84,121,89,88,55,77,47,87,109,72,120,116,70,83,103,82,120,83,120,48,118,86,90,55,71,114,52,109,116,76,69,69,53,84,103,10,110,107,74,108,105,78,75,115,118,100,78,68,104,107,56,113,75,85,82,79,107,68,117,88,120,101,69,69,82,53,51,105,67,52,121,114,51,83,80,74,90,90,114,47,43,83,115,88,115,54,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,49,109,69,77,67,65,117,83,43,86,90,105,81,57,87,76,10,85,87,78,97,66,102,82,101,105,80,99,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,82,51,79,87,101,111,108,121,52,118,103,79,99,55,71,53,80,112,102,88,68,97,79,75,118,53,111,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,65,51,109,69,101,79,70,50,97,103,49,76,10,84,90,101,110,81,85,54,98,90,103,109,48,75,48,115,110,109,118,53,111,68,56,47,107,112,103,76,109,106,78,111,67,73,70,109,102,78,120,82,117,110,105,98,56,104,85,57,48,105,43,78,47,51,71,102,47,99,65,53,49,53,66,43,75,10,55,111,121,82,111,97,67,83,50,75,50,116,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,21,210,101,74,62,93,163,69,4,102,235,249,42,254,66,143,226,163,20,219,39,178,238,62,176,204,62,165,86,133,73,114,2,32,115,71,106,86,245,68,55,205,10,252,191,102,85,94,26,181,210,51,10,136,73,114,38,173,234,59,231,180,58,59,38,143]}}]}}}]}}}]},""metadata"":{""metadata"":[{""value"":{""type"":""Buffer"",""data"":[10,2,8,2,18,9,10,7,10,1,1,16,2,24,7]},""signatures"":[{""signature_header"":{""creator"":{""mspid"":""OrdererMSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,114,106,67,67,65,108,83,103,65,119,73,66,65,103,73,85,102,83,65,67,66,68,51,52,57,103,51,68,84,56,103,48,78,103,113,72,105,111,68,114,55,88,103,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,89,106,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,69,84,65,80,66,103,78,86,66,65,103,84,67,69,53,108,100,121,66,90,98,51,74,114,77,82,69,119,68,119,89,68,86,81,81,72,69,119,104,79,90,88,99,103,10,87,87,57,121,97,122,69,85,77,66,73,71,65,49,85,69,67,104,77,76,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,70,122,65,86,66,103,78,86,66,65,77,84,68,109,78,104,76,109,86,52,89,87,49,119,98,71,85,117,10,89,50,57,116,77,66,52,88,68,84,73,122,77,68,73,121,78,68,69,119,77,122,69,119,77,70,111,88,68,84,73,48,77,68,73,121,78,68,69,119,77,122,89,119,77,70,111,119,89,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,10,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,82,81,119,69,103,89,68,86,81,81,75,69,119,116,73,101,88,66,108,99,109,120,108,90,71,100,108,10,99,106,69,81,77,65,52,71,65,49,85,69,67,120,77,72,98,51,74,107,90,88,74,108,99,106,69,81,77,65,52,71,65,49,85,69,65,120,77,72,98,51,74,107,90,88,74,108,99,106,66,90,77,66,77,71,66,121,113,71,83,77,52,57,10,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,80,57,74,113,98,76,75,68,104,106,74,120,73,73,78,117,118,116,73,110,57,101,56,77,111,119,82,77,108,116,53,110,117,54,83,68,89,121,81,75,76,99,107,10,73,90,50,65,104,109,79,112,56,109,49,54,98,80,68,48,113,119,78,89,70,74,105,97,111,88,56,70,69,118,85,122,49,83,70,109,74,88,87,120,80,98,101,106,103,101,107,119,103,101,89,119,68,103,89,68,86,82,48,80,65,81,72,47,10,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,70,70,119,113,54,116,50,57,84,121,56,116,109,81,108,54,67,120,121,76,122,113,97,10,85,66,75,103,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,73,51,55,107,108,53,73,104,53,69,122,80,73,65,71,65,47,122,80,98,85,49,78,85,82,122,66,77,67,107,71,65,49,85,100,69,81,81,105,77,67,67,67,10,69,50,57,121,90,71,86,121,90,88,73,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,50,67,67,87,120,118,89,50,70,115,97,71,57,122,100,68,66,98,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,80,101,121,74,104,10,100,72,82,121,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,109,57,121,10,90,71,86,121,90,88,73,105,76,67,74,111,90,105,53,85,101,88,66,108,73,106,111,105,98,51,74,107,90,88,74,108,99,105,74,57,102,84,65,75,66,103,103,113,104,107,106,79,80,81,81,68,65,103,78,73,65,68,66,70,65,105,69,65,10,110,90,100,82,84,72,110,116,47,109,108,81,115,117,97,76,118,105,119,51,106,67,86,51,114,43,47,87,114,67,80,121,115,74,97,116,118,108,73,71,102,80,111,67,73,68,76,48,103,75,101,54,107,121,51,68,107,77,70,66,67,73,56,57,10,85,55,89,78,70,105,100,104,67,83,74,102,50,121,119,110,75,75,77,101,108,54,80,98,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[221,99,215,255,11,52,153,213,29,238,83,23,77,111,1,77,158,241,150,148,63,111,29,233]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,78,199,72,219,115,233,231,21,37,224,182,195,118,92,59,218,59,146,209,253,117,232,162,25,163,146,179,37,126,69,96,7,2,32,51,210,36,177,198,147,105,173,72,201,222,1,74,118,129,22,217,159,185,198,135,185,46,77,77,231,191,113,159,254,75,68]}}]},{},[0],{},{""type"":""Buffer"",""data"":[10,32,54,147,116,176,55,31,129,3,24,192,93,60,126,158,55,195,105,28,119,250,178,216,175,185,113,5,113,253,100,116,228,144]}]}}}"'); -INSERT INTO "fabric_blocks_entry_rows" ("id", "block_num", "block_data") VALUES ('59926640c881a3e917c21218b65780507c9b90c1323a336feb57ee5aa15a4d27', '6', '"{""decodedBlock"":{""header"":{""number"":{""low"":6,""high"":0,""unsigned"":true},""previous_hash"":{""type"":""Buffer"",""data"":[56,127,168,20,39,130,23,134,47,178,98,33,130,229,212,24,119,100,4,255,67,84,125,205,126,233,1,50,181,30,142,88]},""data_hash"":{""type"":""Buffer"",""data"":[89,146,102,64,200,129,163,233,23,194,18,24,182,87,128,80,124,155,144,193,50,58,51,111,235,87,238,90,161,90,77,39]}},""data"":{""data"":[{""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,56,208,6,97,26,231,97,30,53,66,251,78,166,183,4,236,164,23,214,109,81,118,90,211,107,98,184,83,101,193,43,64,2,32,86,11,57,134,3,150,52,74,192,58,159,167,48,54,46,112,142,146,142,165,51,134,57,124,76,130,251,189,147,69,189,126]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T10:38:30.720Z"",""channel_id"":""mychannel"",""tx_id"":""85cffc26128116ba1e2cde0f2bcb5b7ec94d58389e338ea1febe3878571939da"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,82,66,68,47,117,110,110,106,79,122,68,110,66,88,50,90,71,101,87,110,73,103,69,86,118,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,84,74,109,43,107,81,85,122,118,98,87,77,73,118,103,103,84,74,49,104,87,54,109,10,49,120,52,116,110,50,78,108,114,71,81,76,69,117,73,79,73,107,114,86,53,70,52,112,56,105,109,79,75,48,109,83,56,82,43,83,113,103,109,116,115,121,47,111,47,116,88,56,104,51,51,122,101,52,55,100,99,54,87,65,110,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,99,103,79,85,10,47,79,72,106,90,55,72,48,72,109,105,57,74,77,118,90,112,98,121,116,70,121,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,76,82,98,80,112,67,69,119,122,55,69,83,98,122,47,87,73,48,76,104,43,103,55,83,10,66,77,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,79,68,86,105,77,109,73,122,78,109,82,105,77,84,104,106,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,51,117,67,104,10,69,102,66,86,55,43,74,71,115,111,103,52,65,99,70,49,50,48,114,119,105,98,111,72,104,48,50,114,121,113,99,110,108,57,49,107,47,119,73,103,76,48,119,113,88,107,48,113,104,78,54,104,70,122,102,122,83,108,67,109,103,110,50,77,10,69,80,73,57,52,79,107,111,87,68,82,99,65,84,47,52,55,83,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[18,130,131,149,207,205,142,28,240,241,233,48,25,72,112,51,62,39,17,162,43,70,109,57]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,82,66,68,47,117,110,110,106,79,122,68,110,66,88,50,90,71,101,87,110,73,103,69,86,118,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,84,74,109,43,107,81,85,122,118,98,87,77,73,118,103,103,84,74,49,104,87,54,109,10,49,120,52,116,110,50,78,108,114,71,81,76,69,117,73,79,73,107,114,86,53,70,52,112,56,105,109,79,75,48,109,83,56,82,43,83,113,103,109,116,115,121,47,111,47,116,88,56,104,51,51,122,101,52,55,100,99,54,87,65,110,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,99,103,79,85,10,47,79,72,106,90,55,72,48,72,109,105,57,74,77,118,90,112,98,121,116,70,121,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,76,82,98,80,112,67,69,119,122,55,69,83,98,122,47,87,73,48,76,104,43,103,55,83,10,66,77,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,79,68,86,105,77,109,73,122,78,109,82,105,77,84,104,106,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,51,117,67,104,10,69,102,66,86,55,43,74,71,115,111,103,52,65,99,70,49,50,48,114,119,105,98,111,72,104,48,50,114,121,113,99,110,108,57,49,107,47,119,73,103,76,48,119,113,88,107,48,113,104,78,54,104,70,122,102,122,83,108,67,109,103,110,50,77,10,69,80,73,57,52,79,107,111,87,68,82,99,65,84,47,52,55,83,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[18,130,131,149,207,205,142,28,240,241,233,48,25,72,112,51,62,39,17,162,43,70,109,57]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[177,10,2,1,9,236,160,117,90,242,13,163,225,234,45,99,2,187,180,130,28,80,161,133,64,94,55,213,107,19,126,148]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,74,107,76,85,89,48,109,90,82,51,53,55,56,67,71,86,115,122,70,120,121,79,74,65,102,111,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,98,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,85,115,120,69,106,65,81,66,103,78,86,66,65,103,84,67,85,104,104,98,88,66,122,97,71,108,121,90,84,69,81,77,65,52,71,65,49,85,69,66,120,77,72,83,72,86,121,10,99,50,120,108,101,84,69,90,77,66,99,71,65,49,85,69,67,104,77,81,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,69,99,77,66,111,71,65,49,85,69,65,120,77,84,89,50,69,117,98,51,74,110,10,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,65,101,70,119,48,121,77,122,65,121,77,106,81,120,77,68,77,120,77,68,66,97,70,119,48,121,78,68,65,121,77,106,81,120,77,68,77,50,77,68,66,97,77,70,115,120,10,67,122,65,74,66,103,78,86,66,65,89,84,65,108,86,84,77,82,99,119,70,81,89,68,86,81,81,73,69,119,53,79,98,51,74,48,97,67,66,68,89,88,74,118,98,71,108,117,89,84,69,85,77,66,73,71,65,49,85,69,67,104,77,76,10,83,72,108,119,90,88,74,115,90,87,82,110,90,88,73,120,68,84,65,76,66,103,78,86,66,65,115,84,66,72,66,108,90,88,73,120,68,106,65,77,66,103,78,86,66,65,77,84,66,88,66,108,90,88,73,119,77,70,107,119,69,119,89,72,10,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,69,84,121,89,88,55,77,47,87,109,72,120,116,70,83,103,82,120,83,120,48,118,86,90,55,71,114,52,109,116,76,69,69,53,84,103,10,110,107,74,108,105,78,75,115,118,100,78,68,104,107,56,113,75,85,82,79,107,68,117,88,120,101,69,69,82,53,51,105,67,52,121,114,51,83,80,74,90,90,114,47,43,83,115,88,115,54,79,66,51,68,67,66,50,84,65,79,66,103,78,86,10,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,49,109,69,77,67,65,117,83,43,86,90,105,81,57,87,76,10,85,87,78,97,66,102,82,101,105,80,99,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,82,51,79,87,101,111,108,121,52,118,103,79,99,55,71,53,80,112,102,88,68,97,79,75,118,53,111,119,73,81,89,68,86,82,48,82,10,66,66,111,119,71,73,73,87,99,71,86,108,99,106,65,117,98,51,74,110,77,105,53,108,101,71,70,116,99,71,120,108,76,109,78,118,98,84,66,87,66,103,103,113,65,119,81,70,66,103,99,73,65,81,82,75,101,121,74,104,100,72,82,121,10,99,121,73,54,101,121,74,111,90,105,53,66,90,109,90,112,98,71,108,104,100,71,108,118,98,105,73,54,73,105,73,115,73,109,104,109,76,107,86,117,99,109,57,115,98,71,49,108,98,110,82,74,82,67,73,54,73,110,66,108,90,88,73,119,10,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,110,66,108,90,88,73,105,102,88,48,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,68,82,119,65,119,82,65,73,103,65,51,109,69,101,79,70,50,97,103,49,76,10,84,90,101,110,81,85,54,98,90,103,109,48,75,48,115,110,109,118,53,111,68,56,47,107,112,103,76,109,106,78,111,67,73,70,109,102,78,120,82,117,110,105,98,56,104,85,57,48,105,43,78,47,51,71,102,47,99,65,53,49,53,66,43,75,10,55,111,121,82,111,97,67,83,50,75,50,116,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,133,210,89,243,75,31,91,238,210,63,76,151,107,253,70,247,200,170,66,72,128,39,135,17,141,181,37,84,36,44,184,208,2,32,112,18,221,209,45,54,188,84,206,164,185,207,193,34,12,62,172,221,6,143,132,137,81,93,207,212,46,163,88,250,245,182]}},{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,84,98,68,112,113,86,83,104,111,110,112,85,51,50,108,85,55,68,117,86,117,48,106,85,105,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,74,88,73,57,66,109,85,116,53,66,51,88,117,113,122,79,100,56,48,101,74,105,86,106,66,101,71,56,86,54,110,10,102,82,54,103,89,77,103,83,70,84,116,55,108,114,71,118,80,57,111,108,70,76,90,99,82,90,81,121,100,57,55,122,75,86,109,80,87,100,47,47,51,67,79,69,68,43,75,78,80,71,76,105,84,43,75,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,66,73,86,56,82,83,49,112,52,70,10,66,52,120,82,87,83,65,86,97,85,81,109,74,114,65,48,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,67,48,87,122,54,81,104,77,77,43,120,69,109,56,47,49,105,78,67,52,102,111,79,48,103,84,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,43,117,119,100,117,107,10,121,55,100,82,51,90,79,55,79,112,113,47,79,87,75,51,43,100,120,115,48,84,51,117,51,105,102,49,48,85,105,113,90,104,53,72,65,105,66,48,68,69,66,53,85,87,79,116,122,69,113,89,70,98,69,73,71,119,103,116,83,66,75,109,10,66,85,76,99,66,104,56,85,47,113,120,74,52,117,108,83,87,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,204,200,12,168,112,122,158,135,163,31,227,173,72,46,29,214,118,163,158,254,238,128,196,4,20,61,154,104,122,225,229,58,2,32,26,7,213,25,91,62,208,88,202,60,221,243,65,128,213,20,194,112,145,37,216,129,120,126,50,153,251,63,204,63,150,136]}}]}}}]}}},{""signature"":{""type"":""Buffer"",""data"":[48,69,2,33,0,133,80,150,171,234,225,168,182,72,158,102,190,178,48,162,157,66,213,235,130,166,214,130,63,36,127,64,109,115,239,184,74,2,32,48,200,13,188,185,58,234,226,80,184,175,53,91,72,129,138,81,157,241,28,25,136,54,28,35,71,121,31,199,36,233,218]},""payload"":{""header"":{""channel_header"":{""type"":3,""version"":0,""timestamp"":""2023-02-24T10:38:35.240Z"",""channel_id"":""mychannel"",""tx_id"":""397371e6b2f6111eeb241f9af3e79981da1774648cb57370ed067491c6d080e6"",""epoch"":{""low"":0,""high"":0,""unsigned"":true},""extension"":{""type"":""Buffer"",""data"":[18,7,18,5,98,97,115,105,99]},""typeString"":""ENDORSER_TRANSACTION""},""signature_header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,82,66,68,47,117,110,110,106,79,122,68,110,66,88,50,90,71,101,87,110,73,103,69,86,118,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,84,74,109,43,107,81,85,122,118,98,87,77,73,118,103,103,84,74,49,104,87,54,109,10,49,120,52,116,110,50,78,108,114,71,81,76,69,117,73,79,73,107,114,86,53,70,52,112,56,105,109,79,75,48,109,83,56,82,43,83,113,103,109,116,115,121,47,111,47,116,88,56,104,51,51,122,101,52,55,100,99,54,87,65,110,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,99,103,79,85,10,47,79,72,106,90,55,72,48,72,109,105,57,74,77,118,90,112,98,121,116,70,121,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,76,82,98,80,112,67,69,119,122,55,69,83,98,122,47,87,73,48,76,104,43,103,55,83,10,66,77,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,79,68,86,105,77,109,73,122,78,109,82,105,77,84,104,106,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,51,117,67,104,10,69,102,66,86,55,43,74,71,115,111,103,52,65,99,70,49,50,48,114,119,105,98,111,72,104,48,50,114,121,113,99,110,108,57,49,107,47,119,73,103,76,48,119,113,88,107,48,113,104,78,54,104,70,122,102,122,83,108,67,109,103,110,50,77,10,69,80,73,57,52,79,107,111,87,68,82,99,65,84,47,52,55,83,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[248,173,102,221,166,254,22,46,61,83,154,49,145,0,221,42,110,8,121,244,222,204,0,146]}}},""data"":{""actions"":[{""header"":{""creator"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,106,67,67,65,108,67,103,65,119,73,66,65,103,73,85,75,82,66,68,47,117,110,110,106,79,122,68,110,66,88,50,90,71,101,87,110,73,103,69,86,118,73,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,103,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,52,119,68,65,89,68,86,81,81,76,69,119,86,104,90,71,49,112,98,106,69,83,77,66,65,71,65,49,85,69,65,120,77,74,98,51,74,110,77,87,70,107,10,98,87,108,117,77,70,107,119,69,119,89,72,75,111,90,73,122,106,48,67,65,81,89,73,75,111,90,73,122,106,48,68,65,81,99,68,81,103,65,69,67,84,74,109,43,107,81,85,122,118,98,87,77,73,118,103,103,84,74,49,104,87,54,109,10,49,120,52,116,110,50,78,108,114,71,81,76,69,117,73,79,73,107,114,86,53,70,52,112,56,105,109,79,75,48,109,83,56,82,43,83,113,103,109,116,115,121,47,111,47,116,88,56,104,51,51,122,101,52,55,100,99,54,87,65,110,75,79,66,10,49,122,67,66,49,68,65,79,66,103,78,86,72,81,56,66,65,102,56,69,66,65,77,67,66,52,65,119,68,65,89,68,86,82,48,84,65,81,72,47,66,65,73,119,65,68,65,100,66,103,78,86,72,81,52,69,70,103,81,85,99,103,79,85,10,47,79,72,106,90,55,72,48,72,109,105,57,74,77,118,90,112,98,121,116,70,121,52,119,72,119,89,68,86,82,48,106,66,66,103,119,70,111,65,85,76,82,98,80,112,67,69,119,122,55,69,83,98,122,47,87,73,48,76,104,43,103,55,83,10,66,77,111,119,70,119,89,68,86,82,48,82,66,66,65,119,68,111,73,77,79,68,86,105,77,109,73,122,78,109,82,105,77,84,104,106,77,70,115,71,67,67,111,68,66,65,85,71,66,119,103,66,66,69,57,55,73,109,70,48,100,72,74,122,10,73,106,112,55,73,109,104,109,76,107,70,109,90,109,108,115,97,87,70,48,97,87,57,117,73,106,111,105,73,105,119,105,97,71,89,117,82,87,53,121,98,50,120,115,98,87,86,117,100,69,108,69,73,106,111,105,98,51,74,110,77,87,70,107,10,98,87,108,117,73,105,119,105,97,71,89,117,86,72,108,119,90,83,73,54,73,109,70,107,98,87,108,117,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,103,65,77,69,85,67,73,81,68,65,51,117,67,104,10,69,102,66,86,55,43,74,71,115,111,103,52,65,99,70,49,50,48,114,119,105,98,111,72,104,48,50,114,121,113,99,110,108,57,49,107,47,119,73,103,76,48,119,113,88,107,48,113,104,78,54,104,70,122,102,122,83,108,67,109,103,110,50,77,10,69,80,73,57,52,79,107,111,87,68,82,99,65,84,47,52,55,83,65,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""nonce"":{""type"":""Buffer"",""data"":[248,173,102,221,166,254,22,46,61,83,154,49,145,0,221,42,110,8,121,244,222,204,0,146]}},""payload"":{""chaincode_proposal_payload"":{""input"":{""chaincode_spec"":{""type"":1,""typeString"":""GOLANG"",""input"":{""args"":[{""type"":""Buffer"",""data"":[73,110,105,116,76,101,100,103,101,114]}],""decorations"":{},""is_init"":false},""chaincode_id"":{""name"":""basic""},""timeout"":0}}},""action"":{""proposal_response_payload"":{""proposal_hash"":{""type"":""Buffer"",""data"":[35,46,131,30,196,184,60,36,101,18,120,25,9,91,161,56,115,239,76,5,111,76,105,71,244,102,114,190,29,189,122,23]},""extension"":{""results"":{""data_model"":0,""ns_rwset"":[{""namespace"":""_lifecycle"",""rwset"":{""reads"":[{""key"":""namespaces/fields/basic/Sequence"",""version"":{""block_num"":{""low"":5,""high"":0,""unsigned"":true},""tx_num"":{""low"":0,""high"":0,""unsigned"":true}}}],""range_queries_info"":[],""writes"":[],""metadata_writes"":[]},""collection_hashed_rwset"":[]},{""namespace"":""basic"",""rwset"":{""reads"":[],""range_queries_info"":[],""writes"":[{""key"":""asset1"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,49,34,44,34,99,111,108,111,114,34,58,34,98,108,117,101,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,84,111,109,111,107,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,51,48,48,125]}},{""key"":""asset2"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,50,34,44,34,99,111,108,111,114,34,58,34,114,101,100,34,44,34,115,105,122,101,34,58,53,44,34,111,119,110,101,114,34,58,34,66,114,97,100,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,52,48,48,125]}},{""key"":""asset3"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,51,34,44,34,99,111,108,111,114,34,58,34,103,114,101,101,110,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,74,105,110,32,83,111,111,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,53,48,48,125]}},{""key"":""asset4"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,52,34,44,34,99,111,108,111,114,34,58,34,121,101,108,108,111,119,34,44,34,115,105,122,101,34,58,49,48,44,34,111,119,110,101,114,34,58,34,77,97,120,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,54,48,48,125]}},{""key"":""asset5"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,53,34,44,34,99,111,108,111,114,34,58,34,98,108,97,99,107,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,65,100,114,105,97,110,97,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,55,48,48,125]}},{""key"":""asset6"",""is_delete"":false,""value"":{""type"":""Buffer"",""data"":[123,34,73,68,34,58,34,97,115,115,101,116,54,34,44,34,99,111,108,111,114,34,58,34,119,104,105,116,101,34,44,34,115,105,122,101,34,58,49,53,44,34,111,119,110,101,114,34,58,34,77,105,99,104,101,108,34,44,34,97,112,112,114,97,105,115,101,100,86,97,108,117,101,34,58,56,48,48,125]}}],""metadata_writes"":[]},""collection_hashed_rwset"":[]}]},""events"":{""chaincode_id"":"""",""tx_id"":"""",""event_name"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""response"":{""status"":200,""message"":"""",""payload"":{""type"":""Buffer"",""data"":[]}},""chaincode_id"":{""path"":"""",""name"":""basic"",""version"":""1.0""}}},""endorsements"":[{""endorser"":{""mspid"":""Org1MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,113,84,67,67,65,108,67,103,65,119,73,66,65,103,73,85,86,84,98,68,112,113,86,83,104,111,110,112,85,51,50,108,85,55,68,117,86,117,48,106,85,105,119,119,67,103,89,73,75,111,90,73,122,106,48,69,65,119,73,119,10,99,68,69,76,77,65,107,71,65,49,85,69,66,104,77,67,86,86,77,120,70,122,65,86,66,103,78,86,66,65,103,84,68,107,53,118,99,110,82,111,73,69,78,104,99,109,57,115,97,87,53,104,77,81,56,119,68,81,89,68,86,81,81,72,10,69,119,90,69,100,88,74,111,89,87,48,120,71,84,65,88,66,103,78,86,66,65,111,84,69,71,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,120,72,68,65,97,66,103,78,86,66,65,77,84,69,50,78,104,10,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,72,104,99,78,77,106,77,119,77,106,73,48,77,84,65,122,77,84,65,119,87,104,99,78,77,106,81,119,77,106,73,48,77,84,65,122,78,106,65,119,10,87,106,66,98,77,81,115,119,67,81,89,68,86,81,81,71,69,119,74,86,85,122,69,88,77,66,85,71,65,49,85,69,67,66,77,79,84,109,57,121,100,71,103,103,81,50,70,121,98,50,120,112,98,109,69,120,70,68,65,83,66,103,78,86,10,66,65,111,84,67,48,104,53,99,71,86,121,98,71,86,107,90,50,86,121,77,81,48,119,67,119,89,68,86,81,81,76,69,119,82,119,90,87,86,121,77,81,52,119,68,65,89,68,86,81,81,68,69,119,86,119,90,87,86,121,77,68,66,90,10,77,66,77,71,66,121,113,71,83,77,52,57,65,103,69,71,67,67,113,71,83,77,52,57,65,119,69,72,65,48,73,65,66,74,88,73,57,66,109,85,116,53,66,51,88,117,113,122,79,100,56,48,101,74,105,86,106,66,101,71,56,86,54,110,10,102,82,54,103,89,77,103,83,70,84,116,55,108,114,71,118,80,57,111,108,70,76,90,99,82,90,81,121,100,57,55,122,75,86,109,80,87,100,47,47,51,67,79,69,68,43,75,78,80,71,76,105,84,43,75,106,103,100,119,119,103,100,107,119,10,68,103,89,68,86,82,48,80,65,81,72,47,66,65,81,68,65,103,101,65,77,65,119,71,65,49,85,100,69,119,69,66,47,119,81,67,77,65,65,119,72,81,89,68,86,82,48,79,66,66,89,69,70,80,66,73,86,56,82,83,49,112,52,70,10,66,52,120,82,87,83,65,86,97,85,81,109,74,114,65,48,77,66,56,71,65,49,85,100,73,119,81,89,77,66,97,65,70,67,48,87,122,54,81,104,77,77,43,120,69,109,56,47,49,105,78,67,52,102,111,79,48,103,84,75,77,67,69,71,10,65,49,85,100,69,81,81,97,77,66,105,67,70,110,66,108,90,88,73,119,76,109,57,121,90,122,69,117,90,88,104,104,98,88,66,115,90,83,53,106,98,50,48,119,86,103,89,73,75,103,77,69,66,81,89,72,67,65,69,69,83,110,115,105,10,89,88,82,48,99,110,77,105,79,110,115,105,97,71,89,117,81,87,90,109,97,87,120,112,89,88,82,112,98,50,52,105,79,105,73,105,76,67,74,111,90,105,53,70,98,110,74,118,98,71,120,116,90,87,53,48,83,85,81,105,79,105,74,119,10,90,87,86,121,77,67,73,115,73,109,104,109,76,108,82,53,99,71,85,105,79,105,74,119,90,87,86,121,73,110,49,57,77,65,111,71,67,67,113,71,83,77,52,57,66,65,77,67,65,48,99,65,77,69,81,67,73,70,43,117,119,100,117,107,10,121,55,100,82,51,90,79,55,79,112,113,47,79,87,75,51,43,100,120,115,48,84,51,117,51,105,102,49,48,85,105,113,90,104,53,72,65,105,66,48,68,69,66,53,85,87,79,116,122,69,113,89,70,98,69,73,71,119,103,116,83,66,75,109,10,66,85,76,99,66,104,56,85,47,113,120,74,52,117,108,83,87,119,61,61,10,45,45,45,45,45,69,78,68,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10]}},""signature"":{""type"":""Buffer"",""data"":[48,68,2,32,51,40,137,216,128,163,205,146,246,119,94,237,162,77,254,193,107,51,49,183,68,64,142,246,253,243,66,9,212,4,173,28,2,32,107,254,228,170,170,177,43,40,96,9,138,75,0,4,213,144,127,243,77,124,103,22,152,245,39,35,220,37,212,164,68,176]}},{""endorser"":{""mspid"":""Org2MSP"",""id_bytes"":{""type"":""Buffer"",""data"":[45,45,45,45,45,66,69,71,73,78,32,67,69,82,84,73,70,73,67,65,84,69,45,45,45,45,45,10,77,73,73,67,112,84,67,67,65,107,121,103,65,119,73,66,65,103,73,85,79,74,107,"'); - -INSERT INTO - transaction -VALUES - ( - '4c969755-3ea2-4ea9-983f-419e7d49d36f', - 0, - '0x572b29dac53c4c23685b8ce36233cfa57165f193cd3f15f45f3d5782d2802bc8', - 15690287, - '0x690B9A9E9aa1C9dB991C7721a92d351Db4FaC990', - '0x92324A569fa793485b44DA60b6663a8Cb8fC49A9', - 0.0265, - 'transfer', - '0xa1448194' - ), - ( - '4b969755-3ea2-4ea9-983f-419e7d49d36f', - 1, - '0x66ad6ab48a9cf245d6f122c31797b7faedcc8e61bd00cb6297acc709676c13a5', - 15696528, - '0x974CaA59e49682CdA0AD2bbe82983419A2ECC400', - '0x92324A569fa793485b44DA60b6663a8Cb8fC49A9', - 12.313, - '', - '0xb2443394' - ), - ( - '116beee1-1353-45a7-b352-b4e0d6b3eebf', - 0, - '0x1db1126c2b713fc8a445517b0234c3948733015cbd6b743fa5911bd3e2d33f54', - 15696527, - '0x690B9A9E9aa1C9dB991C7721a92d351Db4FaC990', - '0x514910771AF9Ca656af840dff83E8264EcF986CA', - 0.0016, - 'transfer', - '0xa1448194' - ), - ( - '155c23eb-cb68-4fa3-92d0-b739fe31b48e', - 0, - '0x1f92a740cb307266eed8770f7883c924dc5a3e7af83e76e0fc53d64701651b1b', - 15696526, - '0x974CaA59e49682CdA0AD2bbe82983419A2ECC400', - '0x514910771AF9Ca656af840dff83E8264EcF986CA', - 0.005, - '', - '0xb2443394' - ), - ( - '31cca064-ff18-4b28-8bb7-9ce785e12bec', - 0, - '0x1e5258e553cf021a5c99c5cbd3f4b7d42ba08477795040c3acc5418480687af8', - 15745924, - '0x92324A569fa793485b44DA60b6663a8Cb8fC49A9', - '0x514910771AF9Ca656af840dff83E8264EcF986CA', - 0.0025, - 'transfer', - '0xa1448194' - ), - ( - '3cd1bde0-091f-4495-b688-352bd06237e0', - 1, - '0x270baa921f6da72864529686321a2655266f55177fa3d0ea939c92f96e34cdc8', - 15745811, - '0x125861641FC4407148b184e53291aE5EC5ebD302', - '0x514910771AF9Ca656af840dff83E8264EcF986CA', +-- Sample test input for fabric GUI. Can be used to check the views manually without running the persistence plugin first. +-- Clear: +-- TRUNCATE fabric.block, fabric.certificate, fabric.transaction, fabric.transaction_action, fabric.transaction_action_endorsement, public.plugin_status +-- +-- Data for Name: block; Type: TABLE DATA; Schema: fabric; Owner: postgres +-- +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + 'dac7bd3b-e232-4d75-9050-e84404afd618', 1, + '0x3d4cd7578038163492bc87f1a2a55529ab557f0bf882805084097d98fa04ea29', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '7e6cb22c-8dc4-4a69-be68-32fc69ed0e35', + 2, + '0x78702e216f5a4772ef56087636a52aef66f23ce49e93f8a89c1eb06fe5448b2c', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '20d9af60-50c3-4c92-8847-270e69ce57c0', + 3, + '0xe6656aa10d9f73fde8db5b0ce6bba9a2bc3118c72ef9d69b53b9f7c512139d60', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '95485cea-b99b-490d-bfe4-663d8b7c6d13', + 4, + '0x33c2bd426ac7175b4c36968d0021c11f1bc261c403bc4f3531c47882cfc6a322', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + 'ecafe65a-09c7-49de-9250-cb4e71aa1fd3', + 5, + '0xe8cfcf5f567db8df353a21c7aff71ef6d67ef2367091e3ee7167268559546e60', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + 'fb9c6a3d-3b9c-4d36-b140-525559a6956f', + 6, + '0x21f672d5ba88376ba50c6238477bc4ccab5b6af96502ba24cc7ecbe7aad81e4a', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '612c96de-1ba5-43f8-a50c-c685c1085b14', + 7, + '0xf612c7d8b5574d321a2c9b1a43676cd9a11a2f07eac07cad0babe4aa7eebd463', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '9418c830-35ec-4538-884c-ba72b5a21f0f', + 8, + '0xb80bbbc8cf85912f2da83a6d4e6c9f59d6117c9c2cfff4ce3e87dbb20071f343', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + 'ca782d76-f248-4971-be25-1f8c7ca5b780', + 9, + '0xc7ad52f1578d4a112cb2f590dac2822090970e56efb64718082426ff1ebeebb2', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '420f3616-8844-48de-a903-ab75eb87b888', + 10, + '0x6cd450d353ff819c7acb580380d40271471f3f9b7ace44cb1f3f7a7030d73f01', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + 'b6c8f046-8f58-4637-b41e-a8abe4d519cd', + 11, + '0x5aba71c9e5386fcd7bf2b77c992d1a7bb9fea16f7d6317dfea944212c32d6766', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '398b74de-aec6-478f-9d9e-304418628a27', + 12, + '0xbd6979bbdb237e4c6a274e1d1ba798ff4d7623df8f8e1c6d1c1f7146b1af3ecd', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '34489777-8abf-4fff-be2d-cb13d191d057', + 13, + '0x371792cf3b2b75037c5fe62d469e5161df2f88100d0985d47e79d4e7ebf3f9ee', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '56b1f4dd-1090-4168-8d61-c732e664bccf', + 14, + '0xdd7bf1536073d0e460b3575bcd4f4a94612a6adac4b4544e6e8052f5bb2ec98a', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '3741a620-1953-4b25-ade2-7fdafe4a56f8', + 15, + '0x974561eb868fd3612fce6c6d2e90cb728929c83cb2404b56ed87e74486eea90e', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '1d70b16b-3a1a-4546-8450-7db5a857f424', + 16, + '0xf8c4881f13721e3d662e940dffc84ad61f995dd44bb8078ec2fd05ee5c95dee0', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + 'fd151abb-c943-4a60-83ae-43d55b48b6d6', + 17, + '0xe5de599c2072390ac02c8cc2d45e4384972387aa1ef50b97cd5c7fd8279cf2ee', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + '966bb844-f81a-4778-9232-b5c71e1d3903', + 18, + '0x5fbdbed33d85a3481fd77991f5cc11f90d3908554ae433611124a470f08f2e79', + 1 + ); + +INSERT INTO + fabric.block (id, number, hash, transaction_count) +VALUES + ( + 'ef66a97d-10a8-4195-a169-1cd3e6722ac8', + 19, + '0x79002d52127b411c0589eb1c3253f1f488945dca51f1d8cd628b3390185cf307', + 1 + ); + +-- +-- Data for Name: certificate; Type: TABLE DATA; Schema: fabric; Owner: postgres +-- +INSERT INTO + fabric.certificate ( + id, + serial_number, + subject_common_name, + subject_org_unit, + subject_org, + subject_locality, + subject_state, + subject_country, + issuer_common_name, + issuer_org_unit, + issuer_org, + issuer_locality, + issuer_state, + issuer_country, + subject_alt_name, + valid_from, + valid_to, + pem + ) +VALUES + ( + '53c39873-46ce-44a5-876f-bda47c24ed0c', + '16C8C9A05A2B7EFA6ED794F28A2FBCE6DED1C86C', + 'org1admin', + 'admin', + 'Hyperledger', + '', + 'North Carolina', + 'US', + 'ca.org1.example.com', + '', + 'org1.example.com', + 'Durham', + 'North Carolina', + 'US', + 'DNS:9071369d9d11', + '2024-06-10 10:50:00+00', + '2025-06-10 10:55:00+00', + '-----BEGIN CERTIFICATE----- +MIICqTCCAlCgAwIBAgIUFsjJoForfvpu15Tyii+85t7RyGwwCgYIKoZIzj0EAwIw +cDELMAkGA1UEBhMCVVMxFzAVBgNVBAgTDk5vcnRoIENhcm9saW5hMQ8wDQYDVQQH +EwZEdXJoYW0xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMjQwNjEwMTA1MDAwWhcNMjUwNjEwMTA1NTAw +WjBgMQswCQYDVQQGEwJVUzEXMBUGA1UECBMOTm9ydGggQ2Fyb2xpbmExFDASBgNV +BAoTC0h5cGVybGVkZ2VyMQ4wDAYDVQQLEwVhZG1pbjESMBAGA1UEAxMJb3JnMWFk +bWluMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEaCjVDW8X3Fpa7lXTrjNACJG +mslK1ppx9uzh9Fqk2lLN7GxcJSi2hcIyTK9+udwbRynDHl1HgMG/fLBfqrkCNKOB +1zCB1DAOBgNVHQ8BAf8EBAMCB4AwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUTw/b +Ss21vEgoQbb2wnwXF4DkCTEwHwYDVR0jBBgwFoAUgN29gMPVb3dfnq0ngxTg67qy +iQkwFwYDVR0RBBAwDoIMOTA3MTM2OWQ5ZDExMFsGCCoDBAUGBwgBBE97ImF0dHJz +Ijp7ImhmLkFmZmlsaWF0aW9uIjoiIiwiaGYuRW5yb2xsbWVudElEIjoib3JnMWFk +bWluIiwiaGYuVHlwZSI6ImFkbWluIn19MAoGCCqGSM49BAMCA0cAMEQCIGzNQ3Ut +iHpsKZzzIadYTY7TlC7FliD+XI89FyzM2RqoAiALJ2yU42wNnfrRuByQQN9cHz1j +ArKZknDfP6HYxUS0RQ== +-----END CERTIFICATE----- +' + ); + +INSERT INTO + fabric.certificate ( + id, + serial_number, + subject_common_name, + subject_org_unit, + subject_org, + subject_locality, + subject_state, + subject_country, + issuer_common_name, + issuer_org_unit, + issuer_org, + issuer_locality, + issuer_state, + issuer_country, + subject_alt_name, + valid_from, + valid_to, + pem + ) +VALUES + ( + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '3D697828B3244EDC75A95CCC30FC5013B904F6E5', + 'peer0', + 'peer', + 'Hyperledger', '', - '0xb2443394' - ), + 'North Carolina', + 'US', + 'ca.org1.example.com', + '', + 'org1.example.com', + 'Durham', + 'North Carolina', + 'US', + 'DNS:9071369d9d11', + '2024-06-10 10:50:00+00', + '2025-06-10 10:55:00+00', + '-----BEGIN CERTIFICATE----- +MIICnzCCAkagAwIBAgIUPWl4KLMkTtx1qVzMMPxQE7kE9uUwCgYIKoZIzj0EAwIw +cDELMAkGA1UEBhMCVVMxFzAVBgNVBAgTDk5vcnRoIENhcm9saW5hMQ8wDQYDVQQH +EwZEdXJoYW0xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMjQwNjEwMTA1MDAwWhcNMjUwNjEwMTA1NTAw +WjBbMQswCQYDVQQGEwJVUzEXMBUGA1UECBMOTm9ydGggQ2Fyb2xpbmExFDASBgNV +BAoTC0h5cGVybGVkZ2VyMQ0wCwYDVQQLEwRwZWVyMQ4wDAYDVQQDEwVwZWVyMDBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOBN1m+Sd4tJgk7cj/2tjncS0DDaZrpB +XScgGyyvFu7WvUNAX5huTiUcP6RPnfQ2op1fgaPvHwVWQ4sLwU3wYqSjgdIwgc8w +DgYDVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFOWzZpC41lih +5kCb9Dhd/w626Ve7MB8GA1UdIwQYMBaAFIDdvYDD1W93X56tJ4MU4Ou6sokJMBcG +A1UdEQQQMA6CDDkwNzEzNjlkOWQxMTBWBggqAwQFBgcIAQRKeyJhdHRycyI6eyJo +Zi5BZmZpbGlhdGlvbiI6IiIsImhmLkVucm9sbG1lbnRJRCI6InBlZXIwIiwiaGYu +VHlwZSI6InBlZXIifX0wCgYIKoZIzj0EAwIDRwAwRAIgCNafIs0XRatMvyu1Mj62 +4LVXfIgyolfaFaOZaFtjJdYCIA4bciJH/vMOdbxoAbNr7B83P1GEfHLdmd2yy7D1 +Vi3u +-----END CERTIFICATE----- +' + ); + +INSERT INTO + fabric.certificate ( + id, + serial_number, + subject_common_name, + subject_org_unit, + subject_org, + subject_locality, + subject_state, + subject_country, + issuer_common_name, + issuer_org_unit, + issuer_org, + issuer_locality, + issuer_state, + issuer_country, + subject_alt_name, + valid_from, + valid_to, + pem + ) +VALUES ( - 'a6b1762c-a04a-4081-9fc6-32dac1b128a3', + '03fe59e9-9540-4c19-851d-11de61c6ee84', + '138E42BC35217601BC9B8D631232E26880A2EFCD', + 'org2admin', + 'admin', + 'Hyperledger', + '', + 'North Carolina', + 'US', + 'ca.org2.example.com', + '', + 'org2.example.com', + 'Hursley', + 'Hampshire', + 'UK', + 'DNS:9071369d9d11', + '2024-06-10 10:50:00+00', + '2025-06-10 10:55:00+00', + '-----BEGIN CERTIFICATE----- +MIICpTCCAkygAwIBAgIUE45CvDUhdgG8m41jEjLiaICi780wCgYIKoZIzj0EAwIw +bDELMAkGA1UEBhMCVUsxEjAQBgNVBAgTCUhhbXBzaGlyZTEQMA4GA1UEBxMHSHVy +c2xleTEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eub3Jn +Mi5leGFtcGxlLmNvbTAeFw0yNDA2MTAxMDUwMDBaFw0yNTA2MTAxMDU1MDBaMGAx +CzAJBgNVBAYTAlVTMRcwFQYDVQQIEw5Ob3J0aCBDYXJvbGluYTEUMBIGA1UEChML +SHlwZXJsZWRnZXIxDjAMBgNVBAsTBWFkbWluMRIwEAYDVQQDEwlvcmcyYWRtaW4w +WTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARegEoielYCE4rD9zGSp7hfSnvqDNZr +NCTZ2RNQtjt/skOaf9QPNNpPqGEC1b9MH/RiX0AaTkOzQqLv/86BpKXMo4HXMIHU +MA4GA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBQNSRYsRxQ7 +C3FzkG9hQTii+NllmzAfBgNVHSMEGDAWgBTqU3ENOraRPq6JewJvIU9wNWIkgDAX +BgNVHREEEDAOggw5MDcxMzY5ZDlkMTEwWwYIKgMEBQYHCAEET3siYXR0cnMiOnsi +aGYuQWZmaWxpYXRpb24iOiIiLCJoZi5FbnJvbGxtZW50SUQiOiJvcmcyYWRtaW4i +LCJoZi5UeXBlIjoiYWRtaW4ifX0wCgYIKoZIzj0EAwIDRwAwRAIgAVyUc87cUDWo +qCSJ+kIZ+ZJ4R0qCcV4J43FGLZKOZ1YCIHoOiJsa01L4iEZqNHvWsStaMdBU7Knc +yg47qdnDt+4X +-----END CERTIFICATE----- +' + ); + +INSERT INTO + fabric.certificate ( + id, + serial_number, + subject_common_name, + subject_org_unit, + subject_org, + subject_locality, + subject_state, + subject_country, + issuer_common_name, + issuer_org_unit, + issuer_org, + issuer_locality, + issuer_state, + issuer_country, + subject_alt_name, + valid_from, + valid_to, + pem + ) +VALUES + ( + '68241f33-108d-4cf6-abdd-94b6fe825191', + '71649A396B1760F3384A854456EE7C8E3EC7DFB6', + 'peer0', + 'peer', + 'Hyperledger', + '', + 'North Carolina', + 'US', + 'ca.org2.example.com', + '', + 'org2.example.com', + 'Hursley', + 'Hampshire', + 'UK', + 'DNS:9071369d9d11', + '2024-06-10 10:50:00+00', + '2025-06-10 10:55:00+00', + '-----BEGIN CERTIFICATE----- +MIICnDCCAkKgAwIBAgIUcWSaOWsXYPM4SoVEVu58jj7H37YwCgYIKoZIzj0EAwIw +bDELMAkGA1UEBhMCVUsxEjAQBgNVBAgTCUhhbXBzaGlyZTEQMA4GA1UEBxMHSHVy +c2xleTEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eub3Jn +Mi5leGFtcGxlLmNvbTAeFw0yNDA2MTAxMDUwMDBaFw0yNTA2MTAxMDU1MDBaMFsx +CzAJBgNVBAYTAlVTMRcwFQYDVQQIEw5Ob3J0aCBDYXJvbGluYTEUMBIGA1UEChML +SHlwZXJsZWRnZXIxDTALBgNVBAsTBHBlZXIxDjAMBgNVBAMTBXBlZXIwMFkwEwYH +KoZIzj0CAQYIKoZIzj0DAQcDQgAEvEZTQytr0uskquy873bYYtV6bBI4EnCFkIKb +Oan5DnAFbrlQFWyZ0R79lPbUlCdiV4LQUD1jqLR7ozSI0YxPp6OB0jCBzzAOBgNV +HQ8BAf8EBAMCB4AwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUfsphGAik86sP58SQ +QSAyezUQjfMwHwYDVR0jBBgwFoAU6lNxDTq2kT6uiXsCbyFPcDViJIAwFwYDVR0R +BBAwDoIMOTA3MTM2OWQ5ZDExMFYGCCoDBAUGBwgBBEp7ImF0dHJzIjp7ImhmLkFm +ZmlsaWF0aW9uIjoiIiwiaGYuRW5yb2xsbWVudElEIjoicGVlcjAiLCJoZi5UeXBl +IjoicGVlciJ9fTAKBggqhkjOPQQDAgNIADBFAiEA3n+PBUzGvAQaKzOMqyPCn55v +ksOKGCeIYBZjdj7YO/YCIFn/p5z0p//NsxdDP1k+7C0x6Lpn6S0qhWVLMkvobhLR +-----END CERTIFICATE----- +' + ); + +INSERT INTO + fabric.certificate ( + id, + serial_number, + subject_common_name, + subject_org_unit, + subject_org, + subject_locality, + subject_state, + subject_country, + issuer_common_name, + issuer_org_unit, + issuer_org, + issuer_locality, + issuer_state, + issuer_country, + subject_alt_name, + valid_from, + valid_to, + pem + ) +VALUES + ( + 'f1673034-a3cf-47eb-a246-0457da9ee369', + '67347B298F2E73DDE069B6FCCDCB26CFE1688A08', + 'admin', + 'client', + '', + '', + '', + '', + 'ca.org1.example.com', + '', + 'org1.example.com', + 'Durham', + 'North Carolina', + 'US', + '', + '2024-06-10 10:50:00+00', + '2025-06-10 12:01:00+00', + '-----BEGIN CERTIFICATE----- +MIIB8zCCAZmgAwIBAgIUZzR7KY8uc93gabb8zcsmz+FoiggwCgYIKoZIzj0EAwIw +cDELMAkGA1UEBhMCVVMxFzAVBgNVBAgTDk5vcnRoIENhcm9saW5hMQ8wDQYDVQQH +EwZEdXJoYW0xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMjQwNjEwMTA1MDAwWhcNMjUwNjEwMTIwMTAw +WjAhMQ8wDQYDVQQLEwZjbGllbnQxDjAMBgNVBAMTBWFkbWluMFkwEwYHKoZIzj0C +AQYIKoZIzj0DAQcDQgAEpQDXkuOEKWY3D9bGTh0v7cjqXLGVPXq5aKUTsw6M7ipN +C3VxQGvY8KIQ0tbAz4GQh2tQKyPhglItfYKD49o3HKNgMF4wDgYDVR0PAQH/BAQD +AgeAMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFKikYBlAJcEX7WRtfbjzAC6ODzI1 +MB8GA1UdIwQYMBaAFIDdvYDD1W93X56tJ4MU4Ou6sokJMAoGCCqGSM49BAMCA0gA +MEUCIQDKt/qrpa+i5iXym9UT4ajhuMjMx/FSQkcSQIokx3RTbAIgYmEvAdKHaaMv +Gs3YfnTJA8S1rzQNEz9n0J7TnsuLDZs= +-----END CERTIFICATE----- +' + ); + +INSERT INTO + fabric.certificate ( + id, + serial_number, + subject_common_name, + subject_org_unit, + subject_org, + subject_locality, + subject_state, + subject_country, + issuer_common_name, + issuer_org_unit, + issuer_org, + issuer_locality, + issuer_state, + issuer_country, + subject_alt_name, + valid_from, + valid_to, + pem + ) +VALUES + ( + 'a2e26ed7-ee35-4cdb-be8e-013406ca3534', + '25B509C0754E3D7AD5C4959BBBCAED7575C9DCCA', + 'admin', + 'client', + '', + '', + '', + '', + 'ca.org1.example.com', + '', + 'org1.example.com', + 'Durham', + 'North Carolina', + 'US', + '', + '2024-06-10 10:50:00+00', + '2025-06-10 12:04:00+00', + '-----BEGIN CERTIFICATE----- +MIIB8zCCAZmgAwIBAgIUJbUJwHVOPXrVxJWbu8rtdXXJ3MowCgYIKoZIzj0EAwIw +cDELMAkGA1UEBhMCVVMxFzAVBgNVBAgTDk5vcnRoIENhcm9saW5hMQ8wDQYDVQQH +EwZEdXJoYW0xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMjQwNjEwMTA1MDAwWhcNMjUwNjEwMTIwNDAw +WjAhMQ8wDQYDVQQLEwZjbGllbnQxDjAMBgNVBAMTBWFkbWluMFkwEwYHKoZIzj0C +AQYIKoZIzj0DAQcDQgAEMJYaVNRAB+mlgL43LcFiRu4OnNKKvRww1tuVgDcEw+61 +ov1cF0Gp5+ZUsWBNRNOVtbqJWeuwImnpZyOKg3VuYqNgMF4wDgYDVR0PAQH/BAQD +AgeAMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFISb10JMkBPiJElqdwHscdlXlwed +MB8GA1UdIwQYMBaAFIDdvYDD1W93X56tJ4MU4Ou6sokJMAoGCCqGSM49BAMCA0gA +MEUCIQDJHp/QkukCdnUe10ma6aAip8hGabFXLqgqooq2iOasCwIgCnOjACStpDLc +j8Fxno3p3EAmocwmZyu4wxnVmqfKdhs= +-----END CERTIFICATE----- +' + ); + +-- +-- Data for Name: transaction; Type: TABLE DATA; Schema: fabric; Owner: postgres +-- +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + '8f85a1ed-047f-470a-a8f6-5468cb568c74', + '4affb3661c2a8075e52e8e6826e1768616bb1f8c588b1baa54368a3996a54de8', + 'mychannel', + '2024-06-10 10:55:26.036+00', + 0, + 'ENDORSER_TRANSACTION', 0, - '0x29929aae3c14f00e5163e0a5a47ac4592f9f3616e58d8efc2c35dcac71eab390', - 15145924, - '0x0f04d77d21186Eb031195474c3E9Fa6226Ea3e64', - '0x514910771AF9Ca656af840dff83E8264EcF986CA', - 22, - 'transfer', - '0xa1448194' + '20d9af60-50c3-4c92-8847-270e69ce57c0', + 3 ); INSERT INTO - token_transfer + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) VALUES ( - extensions.uuid_generate_v4(), - '4c969755-3ea2-4ea9-983f-419e7d49d36f', - '0x690B9A9E9aa1C9dB991C7721a92d351Db4FaC990', - '0x125861641FC4407148b184e53291aE5EC5ebD302', - 4321 - ), + '763aa5f5-3d5c-4d87-b785-554ce9baa27f', + '3a8bb1d1fc19c6efaba9f59d20f551840470ee3aa2924669593064996a224306', + 'mychannel', + '2024-06-10 10:55:34.219+00', + 0, + 'ENDORSER_TRANSACTION', + 0, + '95485cea-b99b-490d-bfe4-663d8b7c6d13', + 4 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES ( - extensions.uuid_generate_v4(), - '4b969755-3ea2-4ea9-983f-419e7d49d36f', - '0x974CaA59e49682CdA0AD2bbe82983419A2ECC400', - '0x125861641FC4407148b184e53291aE5EC5ebD302', - 1234 - ), + '3da28b37-5817-4e13-b25d-fec29247d105', + '6364aaf8837b4d8a6b538a2863ec32cc00e1368424d7da5731f308518172c2cd', + 'mychannel', + '2024-06-10 10:55:42.378+00', + 0, + 'ENDORSER_TRANSACTION', + 0, + 'ecafe65a-09c7-49de-9250-cb4e71aa1fd3', + 5 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES ( - extensions.uuid_generate_v4(), - '116beee1-1353-45a7-b352-b4e0d6b3eebf', - '0x690B9A9E9aa1C9dB991C7721a92d351Db4FaC990', - '0x92324A569fa793485b44DA60b6663a8Cb8fC49A9', - 25 - ), + 'efa0703d-72c6-48fc-bd88-2a19de2f5009', + '72d7370e137e14ae580117021fbfef9a1f235d9f4c401bb271ee73756e6b85e2', + 'mychannel', + '2024-06-10 10:56:00.665+00', + 0, + 'ENDORSER_TRANSACTION', + 0, + 'fb9c6a3d-3b9c-4d36-b140-525559a6956f', + 6 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES ( - extensions.uuid_generate_v4(), - '155c23eb-cb68-4fa3-92d0-b739fe31b48e', - '0x974CaA59e49682CdA0AD2bbe82983419A2ECC400', - '0x92324A569fa793485b44DA60b6663a8Cb8fC49A9', - 15 - ), + 'c267a857-ab8a-4032-aa0d-4827bd3c1309', + '6eea68b063283f01041225919098a0928430a2319996ca03a98324b14bccb97c', + 'mychannel', + '2024-06-10 12:02:00.127+00', + 0, + 'ENDORSER_TRANSACTION', + 0, + '612c96de-1ba5-43f8-a50c-c685c1085b14', + 7 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES ( - extensions.uuid_generate_v4(), - '31cca064-ff18-4b28-8bb7-9ce785e12bec', - '0x92324A569fa793485b44DA60b6663a8Cb8fC49A9', - '0x0f04d77d21186Eb031195474c3E9Fa6226Ea3e64', + 'ce9da32f-ae2f-401d-8283-9e447ddaf190', + '5f544cb92cffb0e9ed1db8a8f51b11c580c8b9961eafcdf6ca78628392d5a47d', + 'mychannel', + '2024-06-10 12:02:08.28+00', + 0, + 'ENDORSER_TRANSACTION', + 0, + '9418c830-35ec-4538-884c-ba72b5a21f0f', + 8 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + '350c09f7-3d30-432c-b152-bb8bf9496f26', + 'a379dac7b3d43fc295298a0ddde25039a4a31e6b9478c211a2ee440ae5816d49', + 'mychannel', + '2024-06-10 12:02:16.461+00', + 0, + 'ENDORSER_TRANSACTION', + 0, + 'ca782d76-f248-4971-be25-1f8c7ca5b780', + 9 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + '93453b98-f6ef-404f-b919-c0e4f4269a48', + '46b1b9ca469b3e446edd7b36e0ea2d9c07ba8f0d07e69b9e505c7ab6ac54d16e', + 'mychannel', + '2024-06-10 12:02:25.673+00', + 1, + 'ENDORSER_TRANSACTION', + 0, + '420f3616-8844-48de-a903-ab75eb87b888', + 10 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + 'e75ed8b2-4784-4de4-8b9c-ee633161b0b9', + '7262d91cde3512c541f00bd1df2a1f39fc4a1b9d8e0dc39648c40d8e7a3c3d93', + 'mychannel', + '2024-06-10 12:02:58.26+00', + 0, + 'ENDORSER_TRANSACTION', + 0, + 'b6c8f046-8f58-4637-b41e-a8abe4d519cd', + 11 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + 'a37ddb15-a366-43e3-8bc9-3d3b71b1d54e', + '1f5482b9ff1ed7c14263f9cfe45fba937c4af8d0ec26019313338c927e46ee95', + 'mychannel', + '2024-06-10 12:03:06.467+00', + 0, + 'ENDORSER_TRANSACTION', + 0, + '398b74de-aec6-478f-9d9e-304418628a27', 12 - ), - ( - extensions.uuid_generate_v4(), - '3cd1bde0-091f-4495-b688-352bd06237e0', - '0x125861641FC4407148b184e53291aE5EC5ebD302', - '0x92324A569fa793485b44DA60b6663a8Cb8fC49A9', - 50 - ), - ( - extensions.uuid_generate_v4(), - 'a6b1762c-a04a-4081-9fc6-32dac1b128a3', - '0x0f04d77d21186Eb031195474c3E9Fa6226Ea3e64', - '0x125861641FC4407148b184e53291aE5EC5ebD302', - 32 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + 'ac2ce381-3ce9-410b-a4f1-ede6aaa0dab1', + 'da57d660e6e5d2226d400ccda9c8f0db715e1052e432a1470cca63780251e32a', + 'mychannel', + '2024-06-10 12:03:14.642+00', + 0, + 'ENDORSER_TRANSACTION', + 0, + '34489777-8abf-4fff-be2d-cb13d191d057', + 13 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + '7f076209-512c-449c-86fd-8054714750a8', + '2ecbca537099fd71cda7cdce3550e4bfdd9cea0fcf3079faa85d832b6964a580', + 'mychannel', + '2024-06-10 12:03:24.714+00', + 1, + 'ENDORSER_TRANSACTION', + 0, + '56b1f4dd-1090-4168-8d61-c732e664bccf', + 14 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + '54fec888-dd87-49cb-aac3-933f0dcea308', + '5d0058b145ffaa0a718bd6c2ed9565f77e812d153e7895b1185de7088b007a80', + 'mychannel', + '2024-06-10 12:03:28.422+00', + 1, + 'ENDORSER_TRANSACTION', + 0, + '3741a620-1953-4b25-ade2-7fdafe4a56f8', + 15 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + '1c060a70-9ccd-4c3b-9ec9-bc9afe8138d9', + 'e4b02e92986a02a16d793ba4bf59334c3171c7080814cfdd3472547b5cfb78ea', + 'mychannel', + '2024-06-10 12:03:31.073+00', + 1, + 'ENDORSER_TRANSACTION', + 0, + '1d70b16b-3a1a-4546-8450-7db5a857f424', + 16 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + 'ebc2b58b-3244-4576-9d5a-acd25ec041d9', + '4246b59dd61f591e35d8bd0359b7a7d157b65826eb43a6a45ed6f1031478cf7b', + 'mychannel', + '2024-06-10 12:04:31.605+00', + 1, + 'ENDORSER_TRANSACTION', + 0, + 'fd151abb-c943-4a60-83ae-43d55b48b6d6', + 17 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + '80c35806-4d2b-4b20-90e0-46c3cbb38ded', + '4b0e2134da73bf9f4c8809b274fd84af85ff5f1a8f2497da40597bb520010b49', + 'mychannel', + '2024-06-10 12:04:35.65+00', + 1, + 'ENDORSER_TRANSACTION', + 0, + '966bb844-f81a-4778-9232-b5c71e1d3903', + 18 + ); + +INSERT INTO + fabric.transaction ( + id, + hash, + channel_id, + "timestamp", + protocol_version, + type, + epoch, + block_id, + block_number + ) +VALUES + ( + '08371e04-4054-48ba-808b-e0c5706aa64c', + 'd2760e8e510d9b3f22fb5abcce88a85048936a95d6e4787d60598264220d5a71', + 'mychannel', + '2024-06-10 12:04:38.37+00', + 1, + 'ENDORSER_TRANSACTION', + 0, + 'ef66a97d-10a8-4195-a169-1cd3e6722ac8', + 19 + ); + +-- +-- Data for Name: transaction_action; Type: TABLE DATA; Schema: fabric; Owner: postgres +-- +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '141be4d2-8460-43b1-8048-b622331bdb0b', + 'ApproveChaincodeDefinitionForMyOrg', + '0x0801120562617369631a05312e302e314a50124e0a4c62617369635f312e302e313a36353062376234663561383534356437313036353164633031656465653863663833353138656634623336613637613038626530363162613134646136353361', + '_lifecycle', + 'Org1MSP', + '53c39873-46ce-44a5-876f-bda47c24ed0c', + '8f85a1ed-047f-470a-a8f6-5468cb568c74' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '6b3420a0-310d-4218-8499-7766411c862e', + 'ApproveChaincodeDefinitionForMyOrg', + '0x0801120562617369631a05312e302e314a50124e0a4c62617369635f312e302e313a36353062376234663561383534356437313036353164633031656465653863663833353138656634623336613637613038626530363162613134646136353361', + '_lifecycle', + 'Org2MSP', + '03fe59e9-9540-4c19-851d-11de61c6ee84', + '763aa5f5-3d5c-4d87-b785-554ce9baa27f' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + 'b5336c96-d69f-4c06-8fef-ec7d0ecc9a06', + 'CommitChaincodeDefinition', + '0x0801120562617369631a05312e302e31', + '_lifecycle', + 'Org2MSP', + '03fe59e9-9540-4c19-851d-11de61c6ee84', + '3da28b37-5817-4e13-b25d-fec29247d105' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + 'e718b8ff-7924-4425-8882-080862a39de0', + 'InitLedger', + '', + 'basic', + 'Org1MSP', + '53c39873-46ce-44a5-876f-bda47c24ed0c', + 'efa0703d-72c6-48fc-bd88-2a19de2f5009' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + 'fa53978f-87b3-4474-89cf-283ee053ee88', + 'ApproveChaincodeDefinitionForMyOrg', + '0x0801120e636f7079417373657454726164651a05312e302e314a5912570a55636f7079417373657454726164655f312e302e313a61326231383362313332363538313065653533666431666131363934613830366465653433363134303461663130373365623362323361333362636361613039', + '_lifecycle', + 'Org1MSP', + '53c39873-46ce-44a5-876f-bda47c24ed0c', + 'c267a857-ab8a-4032-aa0d-4827bd3c1309' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + 'b0f8b304-cadc-4c19-9488-8be5d61df037', + 'ApproveChaincodeDefinitionForMyOrg', + '0x0801120e636f7079417373657454726164651a05312e302e314a5912570a55636f7079417373657454726164655f312e302e313a61326231383362313332363538313065653533666431666131363934613830366465653433363134303461663130373365623362323361333362636361613039', + '_lifecycle', + 'Org2MSP', + '03fe59e9-9540-4c19-851d-11de61c6ee84', + 'ce9da32f-ae2f-401d-8283-9e447ddaf190' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '798a7d3d-8374-49ed-87a2-3986e7675204', + 'CommitChaincodeDefinition', + '0x0801120e636f7079417373657454726164651a05312e302e31', + '_lifecycle', + 'Org2MSP', + '03fe59e9-9540-4c19-851d-11de61c6ee84', + '350c09f7-3d30-432c-b152-bb8bf9496f26' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '12100ece-02d9-4216-ac6a-5abfc9c2acf1', + 'InitLedger', + '', + 'copyAssetTrade', + 'Org1MSP', + 'f1673034-a3cf-47eb-a246-0457da9ee369', + '93453b98-f6ef-404f-b919-c0e4f4269a48' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '2353d5b0-7a69-47ec-8417-27caa677c4b9', + 'ApproveChaincodeDefinitionForMyOrg', + '0x0801121170726976617465417373657454726164651a05312e302e31322e0a2c120c120a080112020800120208011a0d120b0a074f7267314d535010031a0d120b0a074f7267324d535010033aefbfbd020a770a750a0f6173736574436f6c6c656374696f6e122a0a28120c120a080112020800120208011a0b12090a074f7267314d53501a0b12090a074f7267324d53501801200128efbfbdefbfbd3d30013801422a0a28120c120a080112020800120208011a0b12090a074f7267314d53501a0b12090a074f7267324d53500a580a560a184f7267314d535050726976617465436f6c6c656374696f6e12190a17120812060801120208001a0b12090a074f7267314d535020012803300142190a17120812060801120208001a0b12090a074f7267314d53500a580a560a184f7267324d535050726976617465436f6c6c656374696f6e12190a17120812060801120208001a0b12090a074f7267324d535020012803300142190a17120812060801120208001a0b12090a074f7267324d53504a5c125a0a5870726976617465417373657454726164655f312e302e313a39633334323164373963633638613337313031663235363964643635616664333066356664666634313737663166363532313130633861633036633636356462', + '_lifecycle', + 'Org1MSP', + '53c39873-46ce-44a5-876f-bda47c24ed0c', + 'e75ed8b2-4784-4de4-8b9c-ee633161b0b9' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '0e093307-90c1-45ce-835f-20fd4096e442', + 'ApproveChaincodeDefinitionForMyOrg', + '0x0801121170726976617465417373657454726164651a05312e302e31322e0a2c120c120a080112020800120208011a0d120b0a074f7267314d535010031a0d120b0a074f7267324d535010033aefbfbd020a770a750a0f6173736574436f6c6c656374696f6e122a0a28120c120a080112020800120208011a0b12090a074f7267314d53501a0b12090a074f7267324d53501801200128efbfbdefbfbd3d30013801422a0a28120c120a080112020800120208011a0b12090a074f7267314d53501a0b12090a074f7267324d53500a580a560a184f7267314d535050726976617465436f6c6c656374696f6e12190a17120812060801120208001a0b12090a074f7267314d535020012803300142190a17120812060801120208001a0b12090a074f7267314d53500a580a560a184f7267324d535050726976617465436f6c6c656374696f6e12190a17120812060801120208001a0b12090a074f7267324d535020012803300142190a17120812060801120208001a0b12090a074f7267324d53504a5c125a0a5870726976617465417373657454726164655f312e302e313a39633334323164373963633638613337313031663235363964643635616664333066356664666634313737663166363532313130633861633036633636356462', + '_lifecycle', + 'Org2MSP', + '03fe59e9-9540-4c19-851d-11de61c6ee84', + 'a37ddb15-a366-43e3-8bc9-3d3b71b1d54e' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '54554be3-4c3f-4da5-9fc3-8ec8aab321d7', + 'CommitChaincodeDefinition', + '0x0801121170726976617465417373657454726164651a05312e302e31322e0a2c120c120a080112020800120208011a0d120b0a074f7267314d535010031a0d120b0a074f7267324d535010033aefbfbd020a770a750a0f6173736574436f6c6c656374696f6e122a0a28120c120a080112020800120208011a0b12090a074f7267314d53501a0b12090a074f7267324d53501801200128efbfbdefbfbd3d30013801422a0a28120c120a080112020800120208011a0b12090a074f7267314d53501a0b12090a074f7267324d53500a580a560a184f7267314d535050726976617465436f6c6c656374696f6e12190a17120812060801120208001a0b12090a074f7267314d535020012803300142190a17120812060801120208001a0b12090a074f7267314d53500a580a560a184f7267324d535050726976617465436f6c6c656374696f6e12190a17120812060801120208001a0b12090a074f7267324d535020012803300142190a17120812060801120208001a0b12090a074f7267324d5350', + '_lifecycle', + 'Org2MSP', + '03fe59e9-9540-4c19-851d-11de61c6ee84', + 'ac2ce381-3ce9-410b-a4f1-ede6aaa0dab1' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '4a07f3f4-84d9-4bcf-ae56-46d6e9ba213b', + 'TransferAsset', + '0x617373657431,0x73616e6974792d34663133363663362d613463352d343061332d383662362d326662383539373065313762', + 'copyAssetTrade', + 'Org1MSP', + 'f1673034-a3cf-47eb-a246-0457da9ee369', + '7f076209-512c-449c-86fd-8054714750a8' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '6457cd77-90bc-4f43-bc0f-ca031dc050db', + 'TransferAsset', + '0x617373657431,0x6f776e65722d31636232323761652d613732312d346334612d616361322d643866353132373636303434', + 'copyAssetTrade', + 'Org1MSP', + 'f1673034-a3cf-47eb-a246-0457da9ee369', + '54fec888-dd87-49cb-aac3-933f0dcea308' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '241b3d1b-7bc3-4153-a01d-e58100740c40', + 'CreateAsset', + '', + 'privateAssetTrade', + 'Org1MSP', + 'f1673034-a3cf-47eb-a246-0457da9ee369', + '1c060a70-9ccd-4c3b-9ec9-bc9afe8138d9' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '2a7cac22-32c0-47ce-9ffe-f47846369822', + 'TransferAsset', + '0x617373657431,0x73616e6974792d37616265353338352d663336322d343238642d626365362d343166346164346435393336', + 'copyAssetTrade', + 'Org1MSP', + 'a2e26ed7-ee35-4cdb-be8e-013406ca3534', + 'ebc2b58b-3244-4576-9d5a-acd25ec041d9' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + 'b10fdef0-b4ac-4688-8f14-393e75cb9e3f', + 'TransferAsset', + '0x617373657431,0x6f776e65722d61663430383035632d393037312d343164382d623634312d373866393633313664656637', + 'copyAssetTrade', + 'Org1MSP', + 'a2e26ed7-ee35-4cdb-be8e-013406ca3534', + '80c35806-4d2b-4b20-90e0-46c3cbb38ded' + ); + +INSERT INTO + fabric.transaction_action ( + id, + function_name, + function_args, + chaincode_id, + creator_msp_id, + creator_certificate_id, + transaction_id + ) +VALUES + ( + '2f294f12-e991-460e-b873-878631f6e3ba', + 'CreateAsset', + '', + 'privateAssetTrade', + 'Org1MSP', + 'a2e26ed7-ee35-4cdb-be8e-013406ca3534', + '08371e04-4054-48ba-808b-e0c5706aa64c' + ); + +-- +-- Data for Name: transaction_action_endorsement; Type: TABLE DATA; Schema: fabric; Owner: postgres +-- +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '32b57fdf-eb8e-4e84-95eb-6350ab49e4f0', + 'Org1MSP', + '0x304402205f576c57e2c29806c7636e6ed4d9b02e842ccbbd01dd333c8716efa927e74bac022079be4c059a36fba7ef9a767275e7d8e0f020a6898d930a9d9f2ab93a5e0d8a9b', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '141be4d2-8460-43b1-8048-b622331bdb0b' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '931ec147-c3c6-4b98-a9bf-6dbefac27fec', + 'Org2MSP', + '0x3045022100f8999f4a27bdd7f63f81bdf5e7b21bfb2a33d2d2016ba0349db3b3f155e977910220275eb3379f77975c6a1ff330387e7285d0b363e5be5d389b5c856de18a567683', + '68241f33-108d-4cf6-abdd-94b6fe825191', + '6b3420a0-310d-4218-8499-7766411c862e' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '41a0e19c-1486-4416-9276-81f6e92119de', + 'Org1MSP', + '0x3045022100b0a631cd090e32efe65d2b97ec5c778dd22df5c98099017c48e8ce64df10c6dc022019ad2f74ae72be2875ab7cc08d0972f1d8c5ec7349faf1f39d7f00ecfe12fad7', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + 'b5336c96-d69f-4c06-8fef-ec7d0ecc9a06' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '41c16940-e2db-44c7-b388-762883a280cd', + 'Org2MSP', + '0x3044022025a01951ffec26e7927afdd12cf8bd900f41e6c91e07fbbec4521550c5142d8a02206fbb80f8d5f04d249decf1b292f436e54a96e4d5effae70697cdeddc16e933f2', + '68241f33-108d-4cf6-abdd-94b6fe825191', + 'b5336c96-d69f-4c06-8fef-ec7d0ecc9a06' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '2733e680-fec5-4fb1-b32d-47ece4cb7ab7', + 'Org2MSP', + '0x3045022100a21ce9346f584555b96aecba62d9ef36e0d0f86f60b70a15db5113395f4bfbc302207d88c27cf789826467d7af093f5e2c57c0346018d0e6e1078c59960c5e0fba2c', + '68241f33-108d-4cf6-abdd-94b6fe825191', + 'e718b8ff-7924-4425-8882-080862a39de0' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '82a88ab6-5ead-48d3-b35c-0cbf5d8dfc1a', + 'Org1MSP', + '0x3045022100a266ff30b146b4679c564ca70c3f1a030d2e9f802f0ad68a589815487da2737f02203f3f74e200d354ae1684f091112418e72ae0fbb9180ddf79c9f6fb09f4e16181', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + 'e718b8ff-7924-4425-8882-080862a39de0' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '8ef51411-7463-4b6f-bf69-6ba7a4d53c78', + 'Org1MSP', + '0x3045022100d2b3baf9b5d405591b23509b3d626f3ce34f4e180f751fb976e23afd331d172802206d722d28db45a8a1ba078f1ce5fb67afadf7223db54e7aeb8d36efaf0cc6193f', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + 'fa53978f-87b3-4474-89cf-283ee053ee88' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '9be78ffb-4acd-42ac-bd1d-ba1a499e4479', + 'Org2MSP', + '0x3045022100a41e911b1063acc5cab7bd0183162631f6cdd436779df32abf340fc1f886a431022032696fcd6474331a14788dd18b74cfddc0ff7acffc0a77dba46883ccfc24d6d4', + '68241f33-108d-4cf6-abdd-94b6fe825191', + 'b0f8b304-cadc-4c19-9488-8be5d61df037' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + 'f151d7de-77bb-4460-9c43-7ba7c7a227db', + 'Org1MSP', + '0x304402203f7a886d62a76d1b959d1d15f8dc49e007b71259953bf1c018ef736734d142b3022034436509dd9bbd36dc0a3f256eff505213802b0069899514dd2c6177337625b0', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '798a7d3d-8374-49ed-87a2-3986e7675204' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + 'b42fcef0-061c-45af-8d2d-43678ccd4122', + 'Org2MSP', + '0x3044022059ce716e8f141a98027dfa4bca90349d7908d8a11f84ce96045aa019688863fd0220723744bb24b05b377f3197d53e8e9086ddb648ed0e7c0608a89b6f9d367fa4ba', + '68241f33-108d-4cf6-abdd-94b6fe825191', + '798a7d3d-8374-49ed-87a2-3986e7675204' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + 'a98e619b-df6f-4e29-b146-d3a48b9961a5', + 'Org1MSP', + '0x30440220573ac84d386b35816a428894ef91d577134ac935910888fe8d8db3119154c13b02202a5a33a65047f3041e42a6202380c4575b25163a499184ae00aa254caa9b7026', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '12100ece-02d9-4216-ac6a-5abfc9c2acf1' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '2e0b5d24-1a78-44c4-a40d-2a9650be6191', + 'Org2MSP', + '0x304402202b2dbfb13258bb8d43cd96322a296dd2f746b31c9952dbfd3d457fe44c1b51a4022035f9590cdcd6b956c07a7d6c3b52aad0f543ff6960ca9230ecfb1d9f45d3b123', + '68241f33-108d-4cf6-abdd-94b6fe825191', + '12100ece-02d9-4216-ac6a-5abfc9c2acf1' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '2897b046-c535-4bee-ae5b-30ddbe5d0709', + 'Org1MSP', + '0x3045022100d9328f0393e2ea40106fe1b4c9192ec01c68898289806ad88d4be3e36ab537d3022002c148d4cbc2a9d54c18eb6facfdd5cfea778d5d4db06d8329b80a6a5b4c46ea', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '2353d5b0-7a69-47ec-8417-27caa677c4b9' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '4a6436fa-ca75-4cf5-b3e5-91b0fb25541d', + 'Org2MSP', + '0x30440220703d56012c82285f767f8ec549204a70c679ca2a283388de9c259a6194235ce902204300723f79021e45b433511d05ebb5040da15ac783ffee204bbe1033d745624c', + '68241f33-108d-4cf6-abdd-94b6fe825191', + '0e093307-90c1-45ce-835f-20fd4096e442' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + 'bc45a08e-500e-4962-b147-7dd7af6e9e0e', + 'Org1MSP', + '0x304402202939b4fe7ff3490076d241b29445418e4fd65e82281d28f382d97cb3ca29544102202e6fc42fffb6c79e488fa64a682dfcadf37a08c6e46acb6337c69f0668c422de', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '54554be3-4c3f-4da5-9fc3-8ec8aab321d7' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + 'bd48f3e4-d8ab-4066-8f28-dd9eef73cea7', + 'Org2MSP', + '0x304502210099af25b8ca50a978780d0a8411f18b692b5fff010dfdeed06f92f90d0eedac980220486c997493599f6ccc96fc57297272b9a505b28e82f29f6c9663ddcbde8821d6', + '68241f33-108d-4cf6-abdd-94b6fe825191', + '54554be3-4c3f-4da5-9fc3-8ec8aab321d7' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + 'e6fc4db2-3b02-451a-aae8-812657180011', + 'Org1MSP', + '0x3044022031f69fb0f8886471ace47de7a29d122b2c45bc1ac946f2e0fabde1d47002414502205aedd7ce514b4112fb4f2889a742d9c1baf28ea4cde8ac0c1d7bfd5df9506d45', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '4a07f3f4-84d9-4bcf-ae56-46d6e9ba213b' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '5b1546ae-7f6a-4e53-91c7-53f5c44d37a3', + 'Org2MSP', + '0x3044022013213ccb69482b39383d7ebc39d232441dff0aaa4e04d3e61a05458f9235f04c0220639a6be7e4bdbf23fa3aabb1091a2e97a7955c2572bf25724b0cfadbcdd7e647', + '68241f33-108d-4cf6-abdd-94b6fe825191', + '4a07f3f4-84d9-4bcf-ae56-46d6e9ba213b' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + 'a5788226-4c32-4e0d-9531-92f963a27a94', + 'Org1MSP', + '0x3044022072aa04dd848ce9c88ab25e97ad321ea7c4fd42d8d5698c8169da7c62218ff5a70220742cbfb2d65efc7734e8f058c43d575d49f3b8ae30f9735600c72153fdc34b92', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '6457cd77-90bc-4f43-bc0f-ca031dc050db' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '28713ba5-3e13-4e7c-868f-5b1958328caa', + 'Org2MSP', + '0x304402206678b707f6ea97754c3402efb2bdc48da26447c431652f8e056ab26dd3ae1bd002202f72fa7b310da879081a75b8c811eb4fc035affcb23cb1a6a1db7b192f612874', + '68241f33-108d-4cf6-abdd-94b6fe825191', + '6457cd77-90bc-4f43-bc0f-ca031dc050db' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + 'd34ffff0-c222-4706-82f4-ad8a1f748dc6', + 'Org1MSP', + '0x3045022100e2d87165940bdc4ffdf8c911fff3d61105bf7fa91daaf7cc87609d113e374786022077cf2f89a572449ac606144ba47dbc2af1b23350a58e4038b46fd43bae222b2c', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '241b3d1b-7bc3-4153-a01d-e58100740c40' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '10e9d190-6439-4a5f-8c16-4592c2cc099f', + 'Org1MSP', + '0x3045022100d668c8e0a325dc1f86c78b9732d5c488d245b38e32e4eb0707a5c35da94058ed02202da6c47ea1b4a8925269a9b6b66daef4b65f8cc579ae0ea0706ae2bfba104c63', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '2a7cac22-32c0-47ce-9ffe-f47846369822' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '27f2c324-ab41-4232-840b-d87c8a1533d8', + 'Org2MSP', + '0x3045022100ea7ec9afc68fc351bffdb0a1122eb92746c8cbd9eb10710e244eeb4b6ebbb64d022074a9d782f95a84b3b018a84360e9c5dd7927a7a04c6bde5ebdaa4f6d1755eb54', + '68241f33-108d-4cf6-abdd-94b6fe825191', + '2a7cac22-32c0-47ce-9ffe-f47846369822' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + 'b15d9aa7-1bb6-452d-8703-694b6a61512e', + 'Org1MSP', + '0x304402207bc491ac9b595f4a52fe7345cecc1227f5a90cfe2956de47b1c9c63e51b6e8db022067c65a8a6ee36a8cfcf0246bf84fe55ee83bf8af15c92c70c9c3f25ed79c995b', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + 'b10fdef0-b4ac-4688-8f14-393e75cb9e3f' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + 'ce7f0b38-6abb-4995-812d-0defe47b0452', + 'Org2MSP', + '0x30440220226666fe809aac06003fa102f0b4475abaf5ef1dda14142dcea6a87acc05d7ea02200bfaae7a248323236e7468882d80669c4f8e992493ea0a90397bbee6e2bfafa9', + '68241f33-108d-4cf6-abdd-94b6fe825191', + 'b10fdef0-b4ac-4688-8f14-393e75cb9e3f' + ); + +INSERT INTO + fabric.transaction_action_endorsement ( + id, + mspid, + signature, + certificate_id, + transaction_action_id + ) +VALUES + ( + '6ccb765e-74f6-40e1-8d4f-2d8e16632b9e', + 'Org1MSP', + '0x3045022100c4394729927c583d80ed969f8f7234e3c408ee21f45e9b59ff13fe30a1af099002205f5063955dda064fbe1b53b487185f5c6d16aacc29085560b8e7f2a71af68781', + '85b5e29c-26bf-43fd-b0b2-ba49502e0829', + '2f294f12-e991-460e-b873-878631f6e3ba' + ); + +-- +-- Data for Name: plugin_status; Type: TABLE DATA; Schema: public; Owner: postgres +-- +INSERT INTO + public.plugin_status ( + name, + last_instance_id, + is_schema_initialized, + created_at, + last_connected_at + ) +VALUES + ( + 'PluginPersistenceFabric', + 'functional-test', + true, + '2024-06-07 13:26:34.197062+00', + '2024-06-10 12:00:39.545859+00' ); \ No newline at end of file diff --git a/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabrc-postgresql-db-client.test.ts b/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabrc-postgresql-db-client.test.ts new file mode 100644 index 0000000000..0885997c4e --- /dev/null +++ b/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabrc-postgresql-db-client.test.ts @@ -0,0 +1,380 @@ +/** + * Test for accessing data in PostgreSQL through persistence plugin PostgresDatabaseClient (packages/cactus-plugin-persistence-fabric). + */ + +////////////////////////////////// +// Constants +////////////////////////////////// + +const postgresImageName = "postgres"; +const postgresImageVersion = "14.6-alpine"; +const testLogLevel: LogLevelDesc = "info"; +const sutLogLevel: LogLevelDesc = "info"; +const setupTimeout = 1000 * 60 * 3; // 3 minutes timeout for setup + +import { + pruneDockerAllIfGithubAction, + PostgresTestContainer, +} from "@hyperledger/cactus-test-tooling"; +import { + LogLevelDesc, + LoggerProvider, + Logger, +} from "@hyperledger/cactus-common"; + +import PostgresDatabaseClient from "../../../main/typescript/db-client/db-client"; + +import "jest-extended"; +import { invalidSampleBlock, sampleBlock } from "./sample-block"; + +// Logger setup +const log: Logger = LoggerProvider.getOrCreate({ + label: "persistence-fabric-postgresql-db-client.test", + level: testLogLevel, +}); + +describe("Fabric persistence PostgreSQL PostgresDatabaseClient tests", () => { + const testPluginName = "TestPlugin"; + const testPluginInstanceId = "testInstance"; + let postgresContainer: PostgresTestContainer; + let dbClient: PostgresDatabaseClient; + + ////////////////////////////////// + // Helper Functions + ////////////////////////////////// + + /** + * Delete all data from all tables + */ + async function clearDbSchema() { + await dbClient.client.query( + "DELETE FROM fabric.transaction_action_endorsement", + ); + await dbClient.client.query("DELETE FROM fabric.transaction_action"); + await dbClient.client.query("DELETE FROM fabric.transaction"); + await dbClient.client.query("DELETE FROM fabric.certificate"); + await dbClient.client.query("DELETE FROM fabric.block"); + } + + function checkDbCertificateObject(dbCert: any, sampleCert: any) { + expect(dbCert.id).toBeTruthy(); + expect(dbCert.serial_number).toEqual(sampleCert.serialNumber); + expect(dbCert.subject_alt_name).toEqual(sampleCert.subjectAltName); + expect(dbCert.valid_from).toEqual(new Date(sampleCert.validFrom)); + expect(dbCert.valid_to).toEqual(new Date(sampleCert.validTo)); + expect(dbCert.pem).toEqual(sampleCert.pem); + } + + async function getDbBlocks() { + const response = await dbClient.client.query("SELECT * FROM fabric.block"); + return response.rows; + } + + async function getDbTransactions() { + const response = await dbClient.client.query( + "SELECT * FROM fabric.transaction", + ); + return response.rows; + } + + async function getDbTransactionActions() { + const response = await dbClient.client.query( + "SELECT * FROM fabric.transaction_action", + ); + return response.rows; + } + + async function getDbTransactionActionEndorsements() { + const response = await dbClient.client.query( + "SELECT * FROM fabric.transaction_action_endorsement", + ); + return response.rows; + } + + async function getDbCertificates() { + const response = await dbClient.client.query( + "SELECT * FROM fabric.certificate", + ); + return response.rows; + } + + ////////////////////////////////// + // Environment Setup + ////////////////////////////////// + + beforeAll(async () => { + log.info("Prune Docker..."); + await pruneDockerAllIfGithubAction({ logLevel: testLogLevel }); + + log.info("Run PostgresTestContainer..."); + postgresContainer = new PostgresTestContainer({ + imageName: postgresImageName, + imageVersion: postgresImageVersion, + logLevel: testLogLevel, + envVars: ["POSTGRES_USER=postgres", "POSTGRES_PASSWORD=postgres"], + }); + await postgresContainer.start(); + const postgresPort = await postgresContainer.getPostgresPort(); + expect(postgresPort).toBeTruthy(); + log.info(`Postgres running at 127.0.0.1:${postgresPort}`); + + log.info("Create PostgresDatabaseClient"); + dbClient = new PostgresDatabaseClient({ + connectionString: `postgresql://postgres:postgres@127.0.0.1:${postgresPort}/postgres`, + logLevel: sutLogLevel, + }); + + log.info("Connect the PostgreSQL PostgresDatabaseClient"); + await dbClient.connect(); + + log.info("Mock Supabase schema"); + // We use plain postgres for better performance, but the actual GUI will use Supabase which does it's own adjustment to the DB. + await dbClient.client.query( + `CREATE SCHEMA extensions; + CREATE EXTENSION IF NOT EXISTS "uuid-ossp" SCHEMA extensions; + CREATE ROLE anon NOLOGIN; + CREATE ROLE authenticated NOLOGIN; + CREATE ROLE service_role NOLOGIN; + CREATE ROLE supabase_admin NOLOGIN;`, + ); + + log.info("Initialize the test DB Schema"); + await dbClient.initializePlugin(testPluginName, testPluginInstanceId); + + // Assert all tables are created + const response = await dbClient.client.query( + "SELECT table_name FROM information_schema.tables WHERE table_schema = 'fabric'", + ); + const tableNames = response.rows.map((row) => row.table_name); + expect(tableNames.sort()).toEqual( + [ + "block", + "certificate", + "transaction", + "transaction_action", + "transaction_action_endorsement", + ].sort(), + ); + + // Assert plugin status was inserted + const pluginStatus = await dbClient.getPluginStatus(testPluginName); + expect(pluginStatus).toBeTruthy(); + expect(pluginStatus.name).toEqual(testPluginName); + expect(pluginStatus.last_instance_id).toEqual(testPluginInstanceId); + expect(pluginStatus.is_schema_initialized).toBeTrue(); + expect(pluginStatus.created_at).toEqual(pluginStatus.last_connected_at); + + log.info("Ensure DB Schema is empty (in case test is re-run on same DB"); + await clearDbSchema(); + }, setupTimeout); + + afterAll(async () => { + log.info("FINISHING THE TESTS"); + + if (dbClient) { + log.info("Disconnect the PostgresDatabaseClient"); + await dbClient.shutdown(); + } + + if (postgresContainer) { + log.info("Stop PostgreSQL..."); + await postgresContainer.stop(); + } + + log.info("Prune Docker..."); + await pruneDockerAllIfGithubAction({ logLevel: testLogLevel }); + }, setupTimeout); + + afterEach(async () => { + await clearDbSchema(); + }, setupTimeout); + + ////////////////////////////////// + // Tests + ////////////////////////////////// + + test("Initialize plugin can be called repeatedly and it only updates the last_connected_at", async () => { + const initPluginStatus = await dbClient.getPluginStatus(testPluginName); + expect(initPluginStatus).toBeTruthy(); + + await dbClient.initializePlugin(testPluginName, testPluginInstanceId); + + // Assert plugin status was inserted + const pluginStatus = await dbClient.getPluginStatus(testPluginName); + expect(pluginStatus).toBeTruthy(); + const lastConnectedAt = pluginStatus.last_connected_at; + delete (pluginStatus as any).last_connected_at; + expect(initPluginStatus).toMatchObject(pluginStatus); + expect(lastConnectedAt).not.toEqual(initPluginStatus.last_connected_at); + }); + + // Note: it should also print a warning but we don't assert that + test("Initialize plugin updates instance ID when it changes", async () => { + const newInstanceId = "AnotherInstance"; + const initPluginStatus = await dbClient.getPluginStatus(testPluginName); + expect(initPluginStatus).toBeTruthy(); + + await dbClient.initializePlugin(testPluginName, newInstanceId); + + // Assert plugin status was inserted + const pluginStatus = await dbClient.getPluginStatus(testPluginName); + expect(pluginStatus).toBeTruthy(); + const { last_connected_at, last_instance_id } = pluginStatus; + delete (pluginStatus as any).last_connected_at; + delete (pluginStatus as any).last_instance_id; + expect(initPluginStatus).toMatchObject(pluginStatus); + expect(last_connected_at).not.toEqual(initPluginStatus.last_connected_at); + expect(last_instance_id).toEqual(newInstanceId); + }); + + test("New block data is added to the DB", async () => { + await dbClient.insertBlockData(sampleBlock); + + // Assert block + const blocksResponse = await getDbBlocks(); + expect(blocksResponse.length).toBe(1); + const dbBlock = blocksResponse[0]; + + expect(dbBlock.id).toBeTruthy(); + expect(dbBlock.number).toEqual(sampleBlock.blockNumber.toString()); + expect(dbBlock.hash).toEqual(sampleBlock.blockHash); + expect(dbBlock.transaction_count).toEqual( + sampleBlock.transactionCount.toString(), + ); + + // Assert transactions + const transactionsResponse = await getDbTransactions(); + expect(sampleBlock.cactiTransactionsEvents.length).toBe(1); + expect(transactionsResponse.length).toBe(1); + const dbTx = transactionsResponse[0]; + const sampleTx = sampleBlock.cactiTransactionsEvents[0]; + + expect(dbTx.id).toBeTruthy(); + expect(dbTx.hash).toEqual(sampleTx.hash); + expect(dbTx.channel_id).toEqual(sampleTx.channelId); + expect(dbTx.timestamp).toEqual(new Date(sampleTx.timestamp)); + expect(dbTx.protocol_version).toEqual(sampleTx.protocolVersion); + expect(dbTx.type).toEqual(sampleTx.transactionType); + expect(dbTx.epoch).toEqual(sampleTx.epoch.toString()); + expect(dbTx.block_id).toBeTruthy(); + expect(dbTx.block_number).toEqual(sampleBlock.blockNumber.toString()); + + // Assert transaction actions + const transactionActionsResponse = await getDbTransactionActions(); + expect(sampleTx.actions.length).toBe(1); + expect(transactionActionsResponse.length).toBe(1); + const dbTxAction = transactionActionsResponse[0]; + const sampleTxAction = sampleTx.actions[0]; + + expect(dbTxAction.id).toBeTruthy(); + expect(dbTxAction.function_name).toEqual(sampleTxAction.functionName); + const dbActionArgs = dbTxAction.function_args.split(","); + for (let i = 0; i < dbActionArgs.length; i++) { + expect( + Buffer.from(dbActionArgs[i].substring(2), "hex").toString("utf-8"), + ).toEqual(sampleTxAction.functionArgs[i]); + } + expect(dbTxAction.chaincode_id).toEqual(sampleTxAction.chaincodeId); + expect(dbTxAction.creator_msp_id).toEqual(sampleTxAction.creator.mspid); + expect(dbTxAction.creator_certificate_id).toBeTruthy(); + expect(dbTxAction.transaction_id).toBeTruthy(); + + // Assert transaction action endorsement + const transactionActionEndorsementResponse = + await getDbTransactionActionEndorsements(); + expect(sampleTxAction.endorsements.length).toBe(1); + expect(transactionActionEndorsementResponse.length).toBe(1); + const dbTxActionEndorsement = transactionActionEndorsementResponse[0]; + const sampleTxActionEndorsement = sampleTxAction.endorsements[0]; + + expect(dbTxActionEndorsement.id).toBeTruthy(); + expect(dbTxActionEndorsement.mspid).toEqual( + sampleTxActionEndorsement.signer.mspid, + ); + expect(dbTxActionEndorsement.signature).toEqual( + sampleTxActionEndorsement.signature, + ); + expect(dbTxActionEndorsement.certificate_id).toBeTruthy(); + expect(dbTxActionEndorsement.transaction_action_id).toBeTruthy(); + + // Assert certificates + const certificatesResponse = await getDbCertificates(); + expect(certificatesResponse.length).toBe(2); + + const actionCreatorCert = certificatesResponse.find( + (c) => c.serial_number === sampleTxAction.creator.cert.serialNumber, + ); + checkDbCertificateObject(actionCreatorCert, sampleTxAction.creator.cert); + + const endorserCert = certificatesResponse.find( + (c) => + c.serial_number === sampleTxActionEndorsement.signer.cert.serialNumber, + ); + checkDbCertificateObject( + endorserCert, + sampleTxActionEndorsement.signer.cert, + ); + }); + + test("insertBlockData does not duplicate certificates in the database", async () => { + await dbClient.insertBlockData(sampleBlock); + + // should add two certificates from sample block + expect((await getDbCertificates()).length).toBe(2); + + // clear all other data + await dbClient.client.query( + "DELETE FROM fabric.transaction_action_endorsement", + ); + await dbClient.client.query("DELETE FROM fabric.transaction_action"); + await dbClient.client.query("DELETE FROM fabric.transaction"); + await dbClient.client.query("DELETE FROM fabric.block"); + + // add the block again + await dbClient.insertBlockData(sampleBlock); + + // should not duplicate certificates + expect((await getDbCertificates()).length).toBe(2); + }); + + test("insertBlockData atomic transaction is reverted on error", async () => { + try { + await dbClient.insertBlockData(invalidSampleBlock as any); + expect(true).toBe(false); // Block insertion should fail + } catch (error: unknown) { + log.info("insertBlockData was rejected as expected"); + } + + // Assert no data was added + expect((await getDbBlocks()).length).toBe(0); + expect((await getDbCertificates()).length).toBe(0); + expect((await getDbTransactions()).length).toBe(0); + expect((await getDbTransactionActions()).length).toBe(0); + expect((await getDbTransactionActionEndorsements()).length).toBe(0); + }); + + test("getBlock returns a block from the database", async () => { + await dbClient.insertBlockData(sampleBlock); + + const block = await dbClient.getBlock(sampleBlock.blockNumber); + + expect(block.id).toBeTruthy(); + expect(block.number).toEqual(sampleBlock.blockNumber.toString()); + expect(block.hash).toEqual(sampleBlock.blockHash); + expect(block.transaction_count).toEqual( + sampleBlock.transactionCount.toString(), + ); + }); + + test("getMissingBlocksInRange returns all missing block list", async () => { + await dbClient.insertBlockData(sampleBlock); + expect(sampleBlock.blockNumber).toEqual(3); // sanity check sample data did not change + + const missingBlocks = await dbClient.getMissingBlocksInRange(1, 5); + + const missingBlocksNumbers = missingBlocks + .map((b) => b.block_number) + .sort(); + expect(missingBlocksNumbers).toEqual([1, 2, 4, 5]); + }); +}); diff --git a/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabric-db-client.test.ts b/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabric-db-client.test.ts deleted file mode 100644 index 6dfd66b273..0000000000 --- a/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabric-db-client.test.ts +++ /dev/null @@ -1,236 +0,0 @@ -/** - * Test for accessing data in PostgreSQL through persistence plugin PostgresDatabaseClient (packages/cactus-plugin-persistence-ethereum). - */ - -////////////////////////////////// -// Constants -////////////////////////////////// - -const postgresImageName = "postgres"; -const postgresImageVersion = "14.6-alpine"; -const testLogLevel: LogLevelDesc = "info"; -const sutLogLevel: LogLevelDesc = "info"; -const setupTimeout = 1000 * 60; // 1 minute timeout for setup - -import { v4 as uuidv4 } from "uuid"; -import { - pruneDockerAllIfGithubAction, - PostgresTestContainer, -} from "@hyperledger/cactus-test-tooling"; -import { - LogLevelDesc, - LoggerProvider, - Logger, -} from "@hyperledger/cactus-common"; - -import PostgresDatabaseClient from "../../../main/typescript/db-client/db-client"; - -import "jest-extended"; - -// Logger setup -const log: Logger = LoggerProvider.getOrCreate({ - label: "persistence-ethereum-postgresql-db-client.test", - level: testLogLevel, -}); - -describe("Fabric persistence PostgreSQL PostgresDatabaseClient tests", () => { - const testPluginName = "TestPlugin"; - const testPluginInstanceId = "testInstance"; - let postgresContainer: PostgresTestContainer; - let dbClient: PostgresDatabaseClient; - - ////////////////////////////////// - // Environment Setup - ////////////////////////////////// - - beforeAll(async () => { - log.info("Prune Docker..."); - await pruneDockerAllIfGithubAction({ logLevel: testLogLevel }); - - log.info("Run PostgresTestContainer..."); - postgresContainer = new PostgresTestContainer({ - imageName: postgresImageName, - imageVersion: postgresImageVersion, - logLevel: testLogLevel, - envVars: ["POSTGRES_USER=postgres", "POSTGRES_PASSWORD=postgres"], - }); - await postgresContainer.start(); - - const postgresPort = await postgresContainer.getPostgresPort(); - expect(postgresPort).toBeTruthy(); - log.info(`Postgres running at 127.0.0.1:${postgresPort}`); - - log.info("Create PostgresDatabaseClient"); - dbClient = new PostgresDatabaseClient({ - connectionString: `postgresql://postgres:postgres@127.0.0.1:${postgresPort}/postgres`, - logLevel: sutLogLevel, - }); - - log.info("Connect the PostgreSQL PostgresDatabaseClient"); - await dbClient.connect(); - await dbClient.client.query( - `CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; - CREATE ROLE anon NOLOGIN; - CREATE ROLE authenticated NOLOGIN; - CREATE ROLE service_role NOLOGIN; - CREATE ROLE supabase_admin NOLOGIN;`, - ); - - log.info("Initialize the test DB Schema"); - await dbClient.initializePlugin(testPluginName, testPluginInstanceId); - - log.info("Mock Supabase schema"); - log.info("Ensure DB Schema is empty (in case test is re-run on same DB"); - }, setupTimeout); - - afterAll(async () => { - log.info("FINISHING THE TESTS"); - - if (dbClient) { - log.info("Disconnect the PostgresDatabaseClient"); - await dbClient.shutdown(); - } - - if (postgresContainer) { - log.info("Stop PostgreSQL..."); - await postgresContainer.stop(); - } - log.info("Prune Docker..."); - await pruneDockerAllIfGithubAction({ logLevel: testLogLevel }); - }, setupTimeout); - - //insert simple BlockData into db - test("insert into fabric_blocks", async () => { - const block_data = { - fabric_block_id: "1", - fabric_block_num: 1, - fabric_block_data: - "dd9c20b516743ac44da1afe5242b38baa4c7523bb66f8473ae94299f1fbff810", - }; - const response = await dbClient.insertBlockDataEntry(block_data); - - expect(response).toBeTruthy(); - expect(response.command).toEqual("INSERT"); - expect(response.rowCount).toEqual(1); - expect(response).toMatchObject({ - command: "INSERT", - rowCount: expect.toBeNumber(), - oid: expect.toBeNumber(), - rows: expect.toBeArray(), - fields: expect.toBeArray(), - _types: expect.toBeObject(), - RowCtor: null, - rowAsArray: expect.toBeBoolean(), - }); - }); - - // check simple database query - test("insertBlockDetails", async () => { - const block_details = { - fabric_block_id: uuidv4(), - fabric_blocknum: "1", - fabric_datahash: - "dd9c20b516743ac44da1afe5242b38baa4c7523bb66f8473ae94299f1fbff810", - fabric_tx_count: 1, - fabric_createdat: "2004-10-19 10:23:54+02", - fabric_prev_blockhash: "blockhash", - fabric_channel_id: uuidv4(), - }; - const response = await dbClient.insertBlockDetails(block_details); - - expect(response).toBeTruthy(); - expect(response.command).toEqual("INSERT"); - expect(response.rowCount).toEqual(1); - - expect(response).toMatchObject({ - command: "INSERT", - rowCount: expect.toBeNumber(), - oid: expect.toBeNumber(), - rows: expect.toBeArray(), - fields: expect.toBeArray(), - _types: expect.toBeObject(), - RowCtor: null, - rowAsArray: expect.toBeBoolean(), - }); - }); - - test("insertBlockTransactionEntry", async () => { - const data = { - transaction_id: "1", - fabric_block_id: "1", - fabric_transaction_data: - "dd9c20b516743ac44da1afe5242b38baa4c7523bb66f8473ae94299f1fbff810", - }; - const response = await dbClient.insertBlockTransactionEntry(data); - - expect(response).toBeTruthy(); - expect(response.command).toEqual("INSERT"); - expect(response.rowCount).toEqual(1); - expect(response).toMatchObject({ - command: "INSERT", - rowCount: expect.toBeNumber(), - oid: expect.toBeNumber(), - rows: expect.toBeArray(), - fields: expect.toBeArray(), - _types: expect.toBeObject(), - RowCtor: null, - rowAsArray: expect.toBeBoolean(), - }); - }); - - test("insertDetailedTransactionEntry", async () => { - const data = { - block_number: "1", - block_id: "1", - transaction_id: "1", - createdat: "2004-10-19 10:23:54+02", - chaincodename: "chainCodeName", - status: 1, - creator_msp_id: "1", - endorser_msp_id: "2", - chaincode_id: "1", - type: "type", - read_set: "read_set", - write_set: "write_set", - channel_id: "1", - payload_extension: "payload_extension", - creator_id_bytes: "creator_id_bytes", - creator_nonce: "creator_nonce", - chaincode_proposal_input: "chaincode_proposal_input", - tx_response: "tx_response", - payload_proposal_hash: "payload_proposal_hash", - endorser_id_bytes: "endorser_id_bytes", - endorser_signature: "endorser_signature", - }; - const response = await dbClient.insertDetailedTransactionEntry(data); - - expect(response).toBeTruthy(); - expect(response.command).toEqual("INSERT"); - expect(response.rowCount).toEqual(1); - - expect(response).toMatchObject({ - command: "INSERT", - rowCount: expect.toBeNumber(), - oid: expect.toBeNumber(), - rows: expect.toBeArray(), - fields: expect.toBeArray(), - _types: expect.toBeObject(), - RowCtor: null, - rowAsArray: expect.toBeBoolean(), - }); - }); - - test("maxblock", async () => { - const getMaxBlockNumber = await dbClient.getMaxBlockNumber(); - log.warn(getMaxBlockNumber, getMaxBlockNumber); - expect(getMaxBlockNumber).toBeTruthy(); - expect(getMaxBlockNumber).toBeGreaterThanOrEqual(1); - }); - - test("isThisBlockInDB method", async () => { - const isThisBlockInDB = await dbClient.isThisBlockInDB(-1); - log.warn("isThisBlockInDB", isThisBlockInDB); - expect(isThisBlockInDB).toBeTruthy(); - expect(isThisBlockInDB.rowCount).toEqual(0); - }); -}); diff --git a/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabric-functional.test.ts b/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabric-functional.test.ts new file mode 100644 index 0000000000..94f77b6531 --- /dev/null +++ b/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/persistence-fabric-functional.test.ts @@ -0,0 +1,423 @@ +/** + * Functional test of basic operations on fabric persistence plugin (packages/cactus-plugin-persistence-fabric). + */ + +////////////////////////////////// +// Constants +////////////////////////////////// + +const testLogLevel: LogLevelDesc = "info"; +const sutLogLevel: LogLevelDesc = "info"; +const ledgerChannelName = "mychannel"; +const assetTradeContractName = "copyAssetTrade"; +const setupTimeout = 1000 * 60 * 6; // 6 minutes timeout for setup +const testTimeout = 1000 * 60 * 6; // 6 minutes timeout for some async tests + +// For development on local sawtooth network +// 1. leaveLedgerRunning = true, useRunningLedger = false to run ledger and leave it running after test finishes. +// 2. leaveLedgerRunning = true, useRunningLedger = true to use that ledger in future runs. +const useRunningLedger = false; +const leaveLedgerRunning = false; + +import "jest-extended"; +import http from "http"; +import { AddressInfo } from "net"; +import { v4 as uuidv4 } from "uuid"; +import bodyParser from "body-parser"; +import express from "express"; +import { Server as SocketIoServer } from "socket.io"; + +import { + Containers, + DEFAULT_FABRIC_2_AIO_IMAGE_NAME, + FABRIC_25_LTS_AIO_FABRIC_VERSION, + FABRIC_25_LTS_AIO_IMAGE_VERSION, + FabricTestLedgerV1, + pruneDockerAllIfGithubAction, +} from "@hyperledger/cactus-test-tooling"; +import { + LogLevelDesc, + LoggerProvider, + Logger, + IListenOptions, + Servers, +} from "@hyperledger/cactus-common"; +import { Constants, Configuration } from "@hyperledger/cactus-core-api"; +import { PluginRegistry } from "@hyperledger/cactus-core"; +import { PluginKeychainMemory } from "@hyperledger/cactus-plugin-keychain-memory"; +import { + DefaultEventHandlerStrategy, + FabricApiClient, + FabricContractInvocationType, + FabricSigningCredential, + PluginLedgerConnectorFabric, +} from "@hyperledger/cactus-plugin-ledger-connector-fabric"; + +import DatabaseClient from "../../../main/typescript/db-client/db-client"; +jest.mock("../../../main/typescript/db-client/db-client"); +const DatabaseClientMock = DatabaseClient as unknown as jest.Mock; +import { PluginPersistenceFabric } from "../../../main/typescript"; + +// Logger setup +const log: Logger = LoggerProvider.getOrCreate({ + label: "persistence-fabric-functional.test", + level: testLogLevel, +}); + +describe("Fabric persistence plugin tests", () => { + let ledger: FabricTestLedgerV1; + let signingCredential: FabricSigningCredential; + let fabricConnectorPlugin: PluginLedgerConnectorFabric; + let connectorServer: http.Server; + let dbClientInstance: any; + let socketioServer: SocketIoServer; + let apiClient: FabricApiClient; + let instanceId: string; + let persistence: PluginPersistenceFabric; + + ////////////////////////////////// + // Helper Functions + ////////////////////////////////// + + /** + * Remove all mocks setup on the test DB Client instance. + */ + function clearMockMetadata() { + for (const mockMethodName in dbClientInstance) { + const mockMethod = dbClientInstance[mockMethodName]; + if ("mockClear" in mockMethod) { + mockMethod.mockClear(); + } + } + } + + async function createNewAsset() { + const newAssetId = `asset_${(Math.random() + 1).toString(36).substring(2)}`; + const sendResponse = await apiClient.runTransactionV1({ + signingCredential, + channelName: ledgerChannelName, + contractName: assetTradeContractName, + invocationType: FabricContractInvocationType.Send, + methodName: "CreateAsset", + params: [newAssetId, "yellow", "11", "foo", "199"], + }); + expect(sendResponse).toBeTruthy(); + expect(sendResponse.data).toBeTruthy(); + expect(sendResponse.status).toEqual(200); + } + + ////////////////////////////////// + // Environment Setup + ////////////////////////////////// + + beforeAll(async () => { + log.info("Prune Docker..."); + await pruneDockerAllIfGithubAction({ logLevel: testLogLevel }); + + // Start Ledger + log.info("Start FabricTestLedgerV1..."); + log.debug("Fabric Version:", FABRIC_25_LTS_AIO_FABRIC_VERSION); + ledger = new FabricTestLedgerV1({ + emitContainerLogs: false, + publishAllPorts: true, + logLevel: testLogLevel, + imageName: DEFAULT_FABRIC_2_AIO_IMAGE_NAME, + imageVersion: FABRIC_25_LTS_AIO_IMAGE_VERSION, + envVars: new Map([["FABRIC_VERSION", FABRIC_25_LTS_AIO_FABRIC_VERSION]]), + useRunningLedger, + }); + log.debug("Fabric image:", ledger.getContainerImageName()); + await ledger.start(); + + // Get connection profile + log.info(`Get fabric connection profile for Org1...`); + const connectionProfile = await ledger.getConnectionProfileOrg1(); + log.debug("Fabric connection profile for Org1 OK: %o", connectionProfile); + expect(connectionProfile).toBeTruthy(); + + // Enroll admin and user + const userOrg = "org1"; + const enrollAdminOut = await ledger.enrollAdminV2({ + organization: userOrg, + }); + log.debug("Enrolled admin OK."); + const adminWallet = enrollAdminOut[1]; + const userId = `testUser_${(Math.random() + 1).toString(36).substring(2)}`; + const [userIdentity] = await ledger.enrollUserV2({ + enrollmentID: userId, + organization: userOrg, + wallet: adminWallet, + }); + log.debug(`Enrolled user '${userId}' OK.`); + + // Create Keychain Plugin + const keychainId = uuidv4(); + const keychainEntryKey = "user2"; + const keychainPlugin = new PluginKeychainMemory({ + instanceId: uuidv4(), + keychainId, + logLevel: sutLogLevel, + backend: new Map([[keychainEntryKey, JSON.stringify(userIdentity)]]), + }); + signingCredential = { + keychainId, + keychainRef: keychainEntryKey, + }; + + // Create Connector Plugin + fabricConnectorPlugin = new PluginLedgerConnectorFabric({ + instanceId: uuidv4(), + pluginRegistry: new PluginRegistry({ plugins: [keychainPlugin] }), + sshConfig: await ledger.getSshConfig(), + cliContainerEnv: {}, + peerBinary: "/fabric-samples/bin/peer", + logLevel: sutLogLevel, + connectionProfile, + discoveryOptions: { + enabled: true, + asLocalhost: true, + }, + eventHandlerOptions: { + strategy: DefaultEventHandlerStrategy.NetworkScopeAnyfortx, + commitTimeout: 300, + }, + }); + + // Run http server + const expressApp = express(); + expressApp.use(bodyParser.json({ limit: "250mb" })); + connectorServer = http.createServer(expressApp); + const listenOptions: IListenOptions = { + hostname: "127.0.0.1", + port: 0, + server: connectorServer, + }; + const addressInfo = (await Servers.listen(listenOptions)) as AddressInfo; + const apiHost = `http://${addressInfo.address}:${addressInfo.port}`; + + // Run socketio server + socketioServer = new SocketIoServer(connectorServer, { + path: Constants.SocketIoConnectionPathV1, + }); + + // Register services + await fabricConnectorPlugin.getOrCreateWebServices(); + await fabricConnectorPlugin.registerWebServices(expressApp, socketioServer); + + // Create ApiClient + const apiConfig = new Configuration({ basePath: apiHost }); + apiClient = new FabricApiClient(apiConfig); + + // Deploy contract asset-transfer-basic + if (!useRunningLedger) { + const cmd = [ + "./network.sh", + "deployCC", + "-ccn", + assetTradeContractName, + "-ccp", + "../asset-transfer-basic/chaincode-go", + "-ccl", + "go", + ]; + const out = await Containers.exec( + ledger.getContainer(), + cmd, + 180000, + sutLogLevel, + "/fabric-samples/test-network/", + ); + expect(out).toBeTruthy(); + + const initResponse = await apiClient.runTransactionV1({ + signingCredential, + channelName: ledgerChannelName, + contractName: assetTradeContractName, + invocationType: FabricContractInvocationType.Send, + methodName: "InitLedger", + params: [], + }); + expect(initResponse).toBeTruthy(); + expect(initResponse.data).toBeTruthy(); + expect(initResponse.status).toEqual(200); + log.info("Asset trade initialized"); + } + + // Create persistence plugin + instanceId = "functional-test"; + DatabaseClientMock.mockClear(); + persistence = new PluginPersistenceFabric({ + apiClient, + logLevel: sutLogLevel, + instanceId, + connectionString: "db-is-mocked", + channelName: ledgerChannelName, + gatewayOptions: { + identity: signingCredential.keychainRef, + wallet: { + keychain: signingCredential, + }, + }, + }); + expect(DatabaseClientMock).toHaveBeenCalledTimes(1); + dbClientInstance = DatabaseClientMock.mock.instances[0]; + expect(dbClientInstance).toBeTruthy(); + }, setupTimeout); + + afterAll(async () => { + log.info("FINISHING THE TESTS"); + + if (persistence) { + log.info("Stop persistence plugin..."); + await persistence.shutdown(); + } + + if (connectorServer) { + log.info("Stop connector http servers..."); + await Servers.shutdown(connectorServer); + } + + if (fabricConnectorPlugin) { + log.info("Stop the connector..."); + await fabricConnectorPlugin.shutdown(); + } + + if (ledger && !leaveLedgerRunning) { + log.info("Stop the fabric ledger..."); + await ledger.stop(); + await ledger.destroy(); + } + + log.info("Prune Docker..."); + await pruneDockerAllIfGithubAction({ logLevel: testLogLevel }); + }, setupTimeout); + + beforeEach(() => { + clearMockMetadata(); + }, setupTimeout); + + ////////////////////////////////// + // Tests + ////////////////////////////////// + + test("Basic methods test", async () => { + // getInstanceId() + expect(persistence.getInstanceId()).toEqual(instanceId); + + // getPackageName() + expect(persistence.getPackageName()).toEqual( + "@hyperledger/cactus-plugin-persistence-fabric", + ); + + // getOpenApiSpec() + expect(persistence.getOpenApiSpec()).toBeTruthy(); + }); + + test("onPluginInit creates a DB schema", async () => { + await persistence.onPluginInit(); + + // DB Schema initialized + const initDBCalls = dbClientInstance.initializePlugin.mock.calls; + expect(initDBCalls.length).toBe(1); + }); + + test("Initial plugin status is correct", async () => { + await persistence.onPluginInit(); + + const status = persistence.getStatus(); + expect(status).toBeTruthy(); + expect(status.instanceId).toEqual(instanceId); + expect(status.connected).toBeTrue(); + expect(status.webServicesRegistered).toBeFalse(); // We don't init the services in this test + expect(status.operationsRunning).toBeEmpty(); + expect(status.monitorRunning).toBeFalse(); + expect(status.lastSeenBlock).toEqual(0); + }); + + test( + "Calling syncAll adds new tracked operation that is reported in plugin status", + async () => { + // Freeze on getMissingBlocksInRange method until status is checked + let isStatusChecked = false; + ( + dbClientInstance.getMissingBlocksInRange as jest.Mock + ).mockImplementation(async () => { + while (!isStatusChecked) { + await new Promise((resolve) => setTimeout(resolve, 1000)); + } + + return []; + }); + + const syncAllPromise = persistence.syncAll(); + + try { + // Wait for method to be called + await new Promise((resolve) => setTimeout(resolve, 3000)); + + // Check if syncAll operation is present + const status = persistence.getStatus(); + expect(status).toBeTruthy(); + expect(status.operationsRunning.length).toEqual(1); + const trackedOperation = status.operationsRunning[0]; + expect(trackedOperation.startAt).toBeTruthy(); + expect(trackedOperation.operation).toEqual("syncAll"); + } finally { + // Always finish the syncAll call + isStatusChecked = true; + await syncAllPromise; + } + + const statusAfterFinish = persistence.getStatus(); + expect(statusAfterFinish).toBeTruthy(); + expect(statusAfterFinish.operationsRunning.length).toEqual(0); + }, + testTimeout, + ); + + test( + "Block monitoring detects new changes correctly.", + async () => { + const insertBlockPromise = new Promise((resolve, reject) => { + (dbClientInstance.getMissingBlocksInRange as jest.Mock).mockReturnValue( + [], + ); + + (dbClientInstance.insertBlockData as jest.Mock).mockImplementation( + (blockData) => resolve(blockData), + ); + + persistence.startMonitor((err) => { + reject(err); + }); + log.debug("Persistence plugin block monitoring started."); + }); + + // Wait for monitor to get started + await new Promise((resolve) => setTimeout(resolve, 3000)); + + // Trigger new block + await createNewAsset(); + log.debug("New asset has been created to trigger new tx"); + + const blockData = await insertBlockPromise; + log.error("blockData was inserted:", blockData); + expect(blockData.blockNumber).toBeTruthy(); + expect(blockData.blockHash).toBeTruthy(); + expect(blockData.previousBlockHash).toBeTruthy(); + expect(blockData.cactiTransactionsEvents).toBeDefined(); + + // Check if status reports that monitor is running + const status = persistence.getStatus(); + expect(status).toBeTruthy(); + expect(status.monitorRunning).toBeTrue(); + + // Check if status reports monitor is not running after stopMonitor is called + persistence.stopMonitor(); + const statusAfterStop = persistence.getStatus(); + expect(statusAfterStop).toBeTruthy(); + expect(statusAfterStop.monitorRunning).toBeFalse(); + }, + testTimeout, + ); +}); diff --git a/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/sample-block.ts b/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/sample-block.ts new file mode 100644 index 0000000000..b474e0d55e --- /dev/null +++ b/packages/cactus-plugin-persistence-fabric/src/test/typescript/integration/sample-block.ts @@ -0,0 +1,106 @@ +export const sampleBlock = { + blockNumber: 3, + blockHash: + "0xe6656aa10d9f73fde8db5b0ce6bba9a2bc3118c72ef9d69b53b9f7c512139d60", + previousBlockHash: + "0xf8c0f8c4d4ae2f3c2140a1e63d940734d27549fa8829e1c5c994bcc3182f0caa", + transactionCount: 1, + cactiTransactionsEvents: [ + { + hash: "4affb3661c2a8075e52e8e6826e1768616bb1f8c588b1baa54368a3996a54de8", + channelId: "mychannel", + timestamp: "2024-06-10T10:55:26.036Z", + protocolVersion: 0, + transactionType: "ENDORSER_TRANSACTION", + epoch: 0, + actions: [ + { + functionName: "MyFunctionName", + functionArgs: ["foo", "bar"], + chaincodeId: "myChaincode", + creator: { + mspid: "Org1MSP", + cert: { + serialNumber: "16C8C9A05A2B7EFA6ED794F28A2FBCE6DED1C86C", + subject: + "C=US\nST=North Carolina\nO=Hyperledger\nOU=admin\nCN=org1admin", + issuer: + "C=US\nST=North Carolina\nL=Durham\nO=org1.example.com\nCN=ca.org1.example.com", + subjectAltName: "DNS:9071369d9d11", + validFrom: "Jun 10 10:50:00 2024 GMT", + validTo: "Jun 10 10:55:00 2025 GMT", + pem: "-----BEGIN CERTIFICATE-----\nMIICqTCCAlCgAwIBAgIUFsjJoForfvpu15Tyii+85t7RyGwwCgYIKoZIzj0EAwIw\ncDELMAkGA1UEBhMCVVMxFzAVBgNVBAgTDk5vcnRoIENhcm9saW5hMQ8wDQYDVQQH\nEwZEdXJoYW0xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMjQwNjEwMTA1MDAwWhcNMjUwNjEwMTA1NTAw\nWjBgMQswCQYDVQQGEwJVUzEXMBUGA1UECBMOTm9ydGggQ2Fyb2xpbmExFDASBgNV\nBAoTC0h5cGVybGVkZ2VyMQ4wDAYDVQQLEwVhZG1pbjESMBAGA1UEAxMJb3JnMWFk\nbWluMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEaCjVDW8X3Fpa7lXTrjNACJG\nmslK1ppx9uzh9Fqk2lLN7GxcJSi2hcIyTK9+udwbRynDHl1HgMG/fLBfqrkCNKOB\n1zCB1DAOBgNVHQ8BAf8EBAMCB4AwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUTw/b\nSs21vEgoQbb2wnwXF4DkCTEwHwYDVR0jBBgwFoAUgN29gMPVb3dfnq0ngxTg67qy\niQkwFwYDVR0RBBAwDoIMOTA3MTM2OWQ5ZDExMFsGCCoDBAUGBwgBBE97ImF0dHJz\nIjp7ImhmLkFmZmlsaWF0aW9uIjoiIiwiaGYuRW5yb2xsbWVudElEIjoib3JnMWFk\nbWluIiwiaGYuVHlwZSI6ImFkbWluIn19MAoGCCqGSM49BAMCA0cAMEQCIGzNQ3Ut\niHpsKZzzIadYTY7TlC7FliD+XI89FyzM2RqoAiALJ2yU42wNnfrRuByQQN9cHz1j\nArKZknDfP6HYxUS0RQ==\n-----END CERTIFICATE-----\n", + }, + }, + endorsements: [ + { + signer: { + mspid: "Org1MSP", + cert: { + serialNumber: "3D697828B3244EDC75A95CCC30FC5013B904F6E5", + subject: + "C=US\nST=North Carolina\nO=Hyperledger\nOU=peer\nCN=peer0", + issuer: + "C=US\nST=North Carolina\nL=Durham\nO=org1.example.com\nCN=ca.org1.example.com", + subjectAltName: "DNS:9071369d9d11", + validFrom: "Jun 10 10:50:00 2024 GMT", + validTo: "Jun 10 10:55:00 2025 GMT", + pem: "-----BEGIN CERTIFICATE-----\nMIICnzCCAkagAwIBAgIUPWl4KLMkTtx1qVzMMPxQE7kE9uUwCgYIKoZIzj0EAwIw\ncDELMAkGA1UEBhMCVVMxFzAVBgNVBAgTDk5vcnRoIENhcm9saW5hMQ8wDQYDVQQH\nEwZEdXJoYW0xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMjQwNjEwMTA1MDAwWhcNMjUwNjEwMTA1NTAw\nWjBbMQswCQYDVQQGEwJVUzEXMBUGA1UECBMOTm9ydGggQ2Fyb2xpbmExFDASBgNV\nBAoTC0h5cGVybGVkZ2VyMQ0wCwYDVQQLEwRwZWVyMQ4wDAYDVQQDEwVwZWVyMDBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABOBN1m+Sd4tJgk7cj/2tjncS0DDaZrpB\nXScgGyyvFu7WvUNAX5huTiUcP6RPnfQ2op1fgaPvHwVWQ4sLwU3wYqSjgdIwgc8w\nDgYDVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFOWzZpC41lih\n5kCb9Dhd/w626Ve7MB8GA1UdIwQYMBaAFIDdvYDD1W93X56tJ4MU4Ou6sokJMBcG\nA1UdEQQQMA6CDDkwNzEzNjlkOWQxMTBWBggqAwQFBgcIAQRKeyJhdHRycyI6eyJo\nZi5BZmZpbGlhdGlvbiI6IiIsImhmLkVucm9sbG1lbnRJRCI6InBlZXIwIiwiaGYu\nVHlwZSI6InBlZXIifX0wCgYIKoZIzj0EAwIDRwAwRAIgCNafIs0XRatMvyu1Mj62\n4LVXfIgyolfaFaOZaFtjJdYCIA4bciJH/vMOdbxoAbNr7B83P1GEfHLdmd2yy7D1\nVi3u\n-----END CERTIFICATE-----\n", + }, + }, + signature: + "0x304402205f576c57e2c29806c7636e6ed4d9b02e842ccbbd01dd333c8716efa927e74bac022079be4c059a36fba7ef9a767275e7d8e0f020a6898d930a9d9f2ab93a5e0d8a9b", + }, + ], + }, + ], + }, + ], +}; + +export const invalidSampleBlock = { + blockNumber: 3, + blockHash: + "0xe6656aa10d9f73fde8db5b0ce6bba9a2bc3118c72ef9d69b53b9f7c512139d60", + previousBlockHash: + "0xf8c0f8c4d4ae2f3c2140a1e63d940734d27549fa8829e1c5c994bcc3182f0caa", + transactionCount: 1, + cactiTransactionsEvents: [ + { + hash: "4affb3661c2a8075e52e8e6826e1768616bb1f8c588b1baa54368a3996a54de8", + channelId: "mychannel", + timestamp: "2024-06-10T10:55:26.036Z", + protocolVersion: 0, + type: "ENDORSER_TRANSACTION", + epoch: 0, + actions: [ + { + functionName: "MyFunctionName", + functionArgs: ["foo", "bar"], + chaincodeId: "myChaincode", + creator: { + mspid: "Org1MSP", + cert: { + serialNumber: "16C8C9A05A2B7EFA6ED794F28A2FBCE6DED1C86C", + subject: + "C=US\nST=North Carolina\nO=Hyperledger\nOU=admin\nCN=org1admin", + issuer: + "C=US\nST=North Carolina\nL=Durham\nO=org1.example.com\nCN=ca.org1.example.com", + subjectAltName: "DNS:9071369d9d11", + validFrom: "Jun 10 10:50:00 2024 GMT", + validTo: "Jun 10 10:55:00 2025 GMT", + pem: "-----BEGIN CERTIFICATE-----\nMIICqTCCAlCgAwIBAgIUFsjJoForfvpu15Tyii+85t7RyGwwCgYIKoZIzj0EAwIw\ncDELMAkGA1UEBhMCVVMxFzAVBgNVBAgTDk5vcnRoIENhcm9saW5hMQ8wDQYDVQQH\nEwZEdXJoYW0xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMjQwNjEwMTA1MDAwWhcNMjUwNjEwMTA1NTAw\nWjBgMQswCQYDVQQGEwJVUzEXMBUGA1UECBMOTm9ydGggQ2Fyb2xpbmExFDASBgNV\nBAoTC0h5cGVybGVkZ2VyMQ4wDAYDVQQLEwVhZG1pbjESMBAGA1UEAxMJb3JnMWFk\nbWluMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEaCjVDW8X3Fpa7lXTrjNACJG\nmslK1ppx9uzh9Fqk2lLN7GxcJSi2hcIyTK9+udwbRynDHl1HgMG/fLBfqrkCNKOB\n1zCB1DAOBgNVHQ8BAf8EBAMCB4AwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUTw/b\nSs21vEgoQbb2wnwXF4DkCTEwHwYDVR0jBBgwFoAUgN29gMPVb3dfnq0ngxTg67qy\niQkwFwYDVR0RBBAwDoIMOTA3MTM2OWQ5ZDExMFsGCCoDBAUGBwgBBE97ImF0dHJz\nIjp7ImhmLkFmZmlsaWF0aW9uIjoiIiwiaGYuRW5yb2xsbWVudElEIjoib3JnMWFk\nbWluIiwiaGYuVHlwZSI6ImFkbWluIn19MAoGCCqGSM49BAMCA0cAMEQCIGzNQ3Ut\niHpsKZzzIadYTY7TlC7FliD+XI89FyzM2RqoAiALJ2yU42wNnfrRuByQQN9cHz1j\nArKZknDfP6HYxUS0RQ==\n-----END CERTIFICATE-----\n", + }, + }, + endorsements: [ + { + signer: { + foo: "Org1MSP", + }, + }, + ], + }, + ], + }, + ], +}; diff --git a/packages/cactus-plugin-persistence-fabric/tsconfig.json b/packages/cactus-plugin-persistence-fabric/tsconfig.json index eac6d46994..9278a883a2 100644 --- a/packages/cactus-plugin-persistence-fabric/tsconfig.json +++ b/packages/cactus-plugin-persistence-fabric/tsconfig.json @@ -2,21 +2,31 @@ "extends": "../../tsconfig.base.json", "compilerOptions": { "composite": true, - "outDir": "./dist/lib/", - "declarationDir": "dist/lib", + "outDir": "./dist/lib", + "declarationDir": "./dist/lib", + "resolveJsonModule": true, "rootDir": "./src", - "tsBuildInfoFile": "../../.build-cache/cactus-plugin-persistence-fabrice.tsbuildinfo" + "tsBuildInfoFile": "../../.build-cache/cactus-plugin-persistence-fabric.tsbuildinfo" }, - "include": ["./src", "**/openapi.json"], + "include": ["./src", "./src/**/*.json", "./src/**/*.sql"], "references": [ { - "path": "../cactus-common/tsconfig.json" + "path": "../cactus-core/tsconfig.json" }, { - "path": "../cactus-core/tsconfig.json" + "path": "../cactus-common/tsconfig.json" }, { "path": "../cactus-core-api/tsconfig.json" + }, + { + "path": "../cactus-test-tooling/tsconfig.json" + }, + { + "path": "../cactus-plugin-ledger-connector-fabric/tsconfig.json" + }, + { + "path": "../cactus-plugin-keychain-memory/tsconfig.json" } ] } diff --git a/yarn.lock b/yarn.lock index 3c0db8d18f..c8fb00bf49 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10653,17 +10653,17 @@ __metadata: "@hyperledger/cactus-plugin-keychain-memory": "npm:2.0.0-rc.2" "@hyperledger/cactus-plugin-ledger-connector-fabric": "npm:2.0.0-rc.2" "@hyperledger/cactus-test-tooling": "npm:2.0.0-rc.2" + "@openapitools/openapi-generator-cli": "npm:2.7.0" "@types/express": "npm:4.17.21" "@types/pg": "npm:8.6.5" - "@types/uuid": "npm:10.0.0" + async-mutex: "npm:0.4.0" axios: "npm:1.7.2" body-parser: "npm:1.20.2" express: "npm:4.19.2" - fabric-network: "npm:2.2.20" - fabric-protos: "npm:2.2.20" - js-sha256: "npm:0.9.0" + jest-extended: "npm:4.0.1" pg: "npm:8.8.0" - safe-stable-stringify: "npm:2.4.3" + run-time-error-cjs: "npm:1.4.0" + rxjs: "npm:7.8.1" socket.io: "npm:4.6.2" uuid: "npm:10.0.0" languageName: unknown